Skip to content

Commit b3b587d

Browse files
authored
Merge pull request #317 from DevKor-github/316-온보딩-진입-시-flutter-에러
fix: adjust layout of StepProgress in onboarding screen
2 parents c0f63e8 + 37081c6 commit b3b587d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lib/presentation/onboarding/screens/onboarding_screen.dart

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,14 @@ class _AppBar extends StatelessWidget {
206206
icon: _previousIcon,
207207
),
208208
),
209-
StepProgress(
210-
currentStep: tabController.index,
211-
totalSteps: tabController.length,
209+
Expanded(
210+
child: Padding(
211+
padding: const EdgeInsets.symmetric(horizontal: 16),
212+
child: StepProgress(
213+
currentStep: tabController.index,
214+
totalSteps: tabController.length,
215+
),
216+
),
212217
),
213218
SizedBox(
214219
width: iconButtonSize,

0 commit comments

Comments
 (0)