From 510e2cd8e1005f882b8d9b47a09587cd7597e844 Mon Sep 17 00:00:00 2001 From: Sandace Date: Wed, 20 Dec 2023 18:41:23 +0545 Subject: [PATCH] fix: text hidden in game instruction view --- .../game_instructions/view/game_instructions_overlay.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/game_intro/game_instructions/view/game_instructions_overlay.dart b/lib/game_intro/game_instructions/view/game_instructions_overlay.dart index d5142999..68d57c4d 100644 --- a/lib/game_intro/game_instructions/view/game_instructions_overlay.dart +++ b/lib/game_intro/game_instructions/view/game_instructions_overlay.dart @@ -123,7 +123,7 @@ class _GameInstructionsOverlayViewState children: [ SizedBox( width: 390, - height: 400, + height: 410, child: PageView.builder( controller: pageController, onPageChanged: context.read().updateStep, @@ -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), ], ), );