Skip to content

Commit

Permalink
fix: 4606 - translucent top status bar on on-boarding page 1 (#4615)
Browse files Browse the repository at this point in the history
Impacted file:
* `reinvention_page.dart`: put the color (container) and THEN the SafeArea
  • Loading branch information
monsieurtanuki committed Sep 2, 2023
1 parent 78bc096 commit c71e0b9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class ReinventionPage extends StatelessWidget {
final Size screenSize = MediaQuery.of(context).size;
final double animHeight = 352.0 * screenSize.width / 375.0;

return SafeArea(
bottom: false,
child: Container(
color: backgroundColor,
return Container(
color: backgroundColor,
child: SafeArea(
bottom: false,
child: Stack(
children: <Widget>[
Positioned(
Expand Down

0 comments on commit c71e0b9

Please sign in to comment.