Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
fix: text hidden in game instruction view
Browse files Browse the repository at this point in the history
  • Loading branch information
sandesh-z committed Dec 20, 2023
1 parent d599132 commit 510e2cd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class _GameInstructionsOverlayViewState
children: [
SizedBox(
width: 390,
height: 400,
height: 410,
child: PageView.builder(
controller: pageController,
onPageChanged: context.read<GameInstructionsCubit>().updateStep,
Expand All @@ -139,11 +139,11 @@ class _GameInstructionsOverlayViewState
},
),
),
const SizedBox(height: 24),
const SizedBox(height: 22),
GameInstructionNavigationControls(
pageController: pageController,
),
const SizedBox(height: 16),
const SizedBox(height: 14),
],
),
);
Expand Down

0 comments on commit 510e2cd

Please sign in to comment.