Made space at the bottom of the list smaller
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m2s
Pull Request Pipeline / lint (pull_request) Successful in 2m6s

This commit is contained in:
gelbeinhalb
2025-11-27 22:59:09 +01:00
parent aa208bb2ef
commit 9ee9da2ac8

View File

@@ -107,7 +107,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
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]);