From cea4a69b29a12266ea1f4a1ebc1b3fbcbac7ee5b Mon Sep 17 00:00:00 2001 From: tuxpizza Date: Fri, 18 Oct 2024 12:53:05 -0400 Subject: [PATCH 1/2] Target SDK 35 --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 2f5427531f..2f5c20e561 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -46,7 +46,7 @@ android { defaultConfig { applicationId appProperties['id'] minSdkVersion 24 - targetSdkVersion 34 + targetSdkVersion 35 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" From 01505c48ee0b5af3c5a2792baf30d739f0ada04c Mon Sep 17 00:00:00 2001 From: tuxpizza Date: Fri, 18 Oct 2024 19:35:24 -0400 Subject: [PATCH 2/2] Add SafeArea to new wallet page --- lib/src/screens/new_wallet/new_wallet_page.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/src/screens/new_wallet/new_wallet_page.dart b/lib/src/screens/new_wallet/new_wallet_page.dart index 929e3027a3..09866ab004 100644 --- a/lib/src/screens/new_wallet/new_wallet_page.dart +++ b/lib/src/screens/new_wallet/new_wallet_page.dart @@ -331,7 +331,9 @@ class _WalletNameFormState extends State { ), ), bottomSectionPadding: EdgeInsets.all(24), - bottomSection: Column( + bottomSection: + SafeArea ( + child: Column( children: [ Observer( builder: (context) { @@ -359,6 +361,7 @@ class _WalletNameFormState extends State { ), ], )), + ) ); }