Add SafeArea to new wallet page

This commit is contained in:
tuxpizza 2024-10-18 19:35:24 -04:00
parent cea4a69b29
commit 01505c48ee

View file

@ -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> {
),
],
)),
)
);
}