Skip to content

Commit

Permalink
Onboarding overflow hotfix
Browse files Browse the repository at this point in the history
Modified onboarding widget to fix overflow.
  • Loading branch information
Thesmader authored Apr 26, 2020
1 parent eb1ade1 commit 84a6fb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gogrocy/lib/ui/widgets/onboarding_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class OnBoardingWidget extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 0.021 * constants.screenHeight),
child: SizedBox(
width: 203 * (2.550/2.002),
height: 40.0 * (2.550/2.002),
width: 203 * constants.scaleRatio,
height: 40.0 * constants.scaleRatio,
child: Text(
'The widest selection of home essentials just a few taps away',
textAlign: TextAlign.center,
Expand Down

0 comments on commit 84a6fb2

Please sign in to comment.