mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
Add SafeArea to new wallet page
This commit is contained in:
parent
cea4a69b29
commit
01505c48ee
1 changed files with 4 additions and 1 deletions
|
@ -331,7 +331,9 @@ class _WalletNameFormState extends State<WalletNameForm> {
|
|||
),
|
||||
),
|
||||
bottomSectionPadding: EdgeInsets.all(24),
|
||||
bottomSection: Column(
|
||||
bottomSection:
|
||||
SafeArea (
|
||||
child: Column(
|
||||
children: [
|
||||
Observer(
|
||||
builder: (context) {
|
||||
|
@ -359,6 +361,7 @@ class _WalletNameFormState extends State<WalletNameForm> {
|
|||
),
|
||||
],
|
||||
)),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue