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

fix: text hidden behind view in game instruction view #187

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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