From 9ee9da2ac8015bb77b0c14debd34a453122265ab Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Thu, 27 Nov 2025 22:59:09 +0100 Subject: [PATCH] Made space at the bottom of the list smaller --- lib/presentation/views/main_menu/game_history_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/game_history_view.dart b/lib/presentation/views/main_menu/game_history_view.dart index 3acc186..7f7e943 100644 --- a/lib/presentation/views/main_menu/game_history_view.dart +++ b/lib/presentation/views/main_menu/game_history_view.dart @@ -107,7 +107,7 @@ class _GameHistoryViewState extends State { itemBuilder: (BuildContext context, int index) { if (index == games.length) { return SizedBox( - height: MediaQuery.paddingOf(context).bottom - 20, + height: MediaQuery.paddingOf(context).bottom - 80, ); } return GameHistoryTile(game: games[index]);