From 80e47589caacc64938282af4e4226ffa00a314e2 Mon Sep 17 00:00:00 2001 From: Sneeex <65130981+mathiskir@users.noreply.github.com> Date: Wed, 25 Jun 2025 14:49:50 +0200 Subject: [PATCH] added type annotation for currentgame in GameHistoryListTile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/presentation/widgets/game_history_listtile.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/widgets/game_history_listtile.dart b/lib/presentation/widgets/game_history_listtile.dart index 473476c..ccc818d 100644 --- a/lib/presentation/widgets/game_history_listtile.dart +++ b/lib/presentation/widgets/game_history_listtile.dart @@ -1,7 +1,7 @@ import 'package:flutter/material.dart'; import 'package:game_tracker/core/custom_theme.dart'; -Widget GameHistoryListTile(currentGame){ +Widget GameHistoryListTile(Map currentGame){ return Container( margin: EdgeInsets.only(top: 5, bottom: 5, left: 10, right: 10), padding: EdgeInsets.all(10),