GameHistoryView anpassen #20

Merged
flixcoo merged 27 commits from feature/2-gamehistoryview-anpassen into development 2025-11-30 15:59:25 +00:00
Showing only changes of commit a29123c964 - Show all commits

View File

@@ -63,7 +63,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
return const Center( return const Center(
heightFactor: 4, heightFactor: 4,
child: Text( child: Text(
'Error while loading recent games.', 'Error while loading games.',
), ),
); );
} }
@@ -71,7 +71,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
(!snapshot.hasData || snapshot.data!.isEmpty)) { (!snapshot.hasData || snapshot.data!.isEmpty)) {
return const Center( return const Center(
heightFactor: 4, heightFactor: 4,
child: Text('No recent games available.'), child: Text('No games available.'),
); );
} }