Skip to content

Commit

Permalink
feat(app): improve tutorial paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Feb 27, 2025
1 parent 0531956 commit 133bb1f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/lib/common/widgets/tutorial/tutorial_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class TutorialBuilder extends HookWidget {
);
return Padding(
padding: EdgeInsets.only(
top: PharMeTheme.smallSpace,
left: PharMeTheme.mediumSpace,
bottom: PharMeTheme.mediumSpace,
right: PharMeTheme.mediumSpace,
Expand All @@ -62,7 +63,12 @@ class TutorialBuilder extends HookWidget {
children: [
pageView,
Padding(
padding: EdgeInsets.only(top: PharMeTheme.smallSpace),
padding: EdgeInsets.only(
top: PharMeTheme.mediumSpace,
left: PharMeTheme.smallSpace,
right: PharMeTheme.smallSpace,
bottom: PharMeTheme.smallSpace,
),
child: _buildActionBar(
context,
currentPageIndex,
Expand Down

0 comments on commit 133bb1f

Please sign in to comment.