Skip to content

Commit

Permalink
Show max 5 ongoing games
Browse files Browse the repository at this point in the history
Closes #522
  • Loading branch information
veloce committed Apr 14, 2024
1 parent 3e2458e commit 6305052
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/src/view/home/home_tab_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class _HomeBody extends ConsumerWidget {
children: [
SizedBox(height: 8.0),
_CreateAGameSection(),
_OngoingGamesPreview(maxGamesToShow: 4),
_OngoingGamesPreview(maxGamesToShow: 5),
],
),
),
Expand All @@ -243,7 +243,7 @@ class _HomeBody extends ConsumerWidget {
const _SignInWidget(),
const _HelloWidget(),
const _CreateAGameSection(),
const _OngoingGamesPreview(maxGamesToShow: 4),
const _OngoingGamesPreview(maxGamesToShow: 5),
const RecentGames(),
];
}
Expand All @@ -260,7 +260,7 @@ class _HomeBody extends ConsumerWidget {
child: Column(
children: [
SizedBox(height: 8.0),
_OfflineCorrespondencePreview(maxGamesToShow: 4),
_OfflineCorrespondencePreview(maxGamesToShow: 5),
],
),
),
Expand All @@ -280,7 +280,7 @@ class _HomeBody extends ConsumerWidget {
return const [
SizedBox(height: 8.0),
_HelloWidget(),
_OfflineCorrespondencePreview(maxGamesToShow: 2),
_OfflineCorrespondencePreview(maxGamesToShow: 5),
];
}
}
Expand Down

0 comments on commit 6305052

Please sign in to comment.