From 1214a0bd4a201cd0680097b944c866564b257cce Mon Sep 17 00:00:00 2001 From: reasje Date: Wed, 6 Nov 2024 10:28:49 +0330 Subject: [PATCH] fix: Move continue button upper --- .../wallet_creation_notice/wallet_creation_notice_page.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/features/splash/wallet_creation_notice/wallet_creation_notice_page.dart b/lib/features/splash/wallet_creation_notice/wallet_creation_notice_page.dart index fbe33d49..26193a6e 100644 --- a/lib/features/splash/wallet_creation_notice/wallet_creation_notice_page.dart +++ b/lib/features/splash/wallet_creation_notice/wallet_creation_notice_page.dart @@ -31,7 +31,7 @@ class WalletCreationNoticePage extends HookConsumerWidget { presenter: presenter, useSplashBackground: true, childrenPadding: const EdgeInsets.symmetric(horizontal: 24), - + useFooterPadding: true, // footer: Column( // mainAxisAlignment: MainAxisAlignment.end, // children: [ @@ -130,6 +130,7 @@ class WalletCreationNoticePage extends HookConsumerWidget { onTap: () => presenter.continueNow(context), edgeType: UIConfig.securityScreensButtonsEdgeType, ), + const SizedBox(height: Sizes.spaceNormal,) ], ); }