mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-02-02 14:16:58 +00:00
fix(ui): Onboarding views getting out of safe area
This commit is contained in:
parent
ef743302cd
commit
2e70f26617
|
@ -22,7 +22,8 @@ class OnboardingView extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(final BuildContext context) => Scaffold(
|
||||
body: Align(
|
||||
body: SafeArea(
|
||||
child: Align(
|
||||
child: ConstrainedBox(
|
||||
constraints: const BoxConstraints(maxWidth: 480),
|
||||
child: Column(
|
||||
|
@ -49,5 +50,6 @@ class OnboardingView extends StatelessWidget {
|
|||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue