mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Removed safe area on welcome screen and wallet list screen.
This commit is contained in:
parent
12a7c32826
commit
449155af4a
2 changed files with 32 additions and 26 deletions
|
@ -17,7 +17,7 @@ class WelcomePage extends BasePage {
|
|||
.of(context)
|
||||
.backgroundColor,
|
||||
resizeToAvoidBottomPadding: false,
|
||||
body: SafeArea(child: body(context)));
|
||||
body: body(context));
|
||||
}
|
||||
|
||||
@override
|
||||
|
@ -43,8 +43,9 @@ class WelcomePage extends BasePage {
|
|||
.color);
|
||||
|
||||
return WillPopScope(onWillPop: () async => false, child: Container(
|
||||
padding: EdgeInsets.all(24),
|
||||
padding: EdgeInsets.only(top: 64, bottom: 24, left: 24, right: 24),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
Flexible(
|
||||
flex: 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue