From 550b12a812f723c7154ac3504775efff7f6a4b88 Mon Sep 17 00:00:00 2001 From: Booker Date: Wed, 27 May 2026 14:16:21 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=B0=86=20NormalTheme=20=E7=9A=84?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E9=A2=9C=E8=89=B2=E5=92=8C=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=A0=8F=E9=A2=9C=E8=89=B2=E6=9B=B4=E6=96=B0=E4=B8=BA=E7=99=BD?= =?UTF-8?q?=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/src/main/res/values-night-v31/styles.xml | 3 ++- android/app/src/main/res/values-night/styles.xml | 3 ++- android/app/src/main/res/values-v31/styles.xml | 3 ++- android/app/src/main/res/values/styles.xml | 3 ++- lib/main.dart | 4 ++-- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/android/app/src/main/res/values-night-v31/styles.xml b/android/app/src/main/res/values-night-v31/styles.xml index a1d906e..821b936 100644 --- a/android/app/src/main/res/values-night-v31/styles.xml +++ b/android/app/src/main/res/values-night-v31/styles.xml @@ -8,6 +8,7 @@ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml index 1a6fccd..1695eb2 100644 --- a/android/app/src/main/res/values-night/styles.xml +++ b/android/app/src/main/res/values-night/styles.xml @@ -13,6 +13,7 @@ This Theme is only used starting with V2 of Flutter's Android embedding. --> diff --git a/android/app/src/main/res/values-v31/styles.xml b/android/app/src/main/res/values-v31/styles.xml index a1d906e..821b936 100644 --- a/android/app/src/main/res/values-v31/styles.xml +++ b/android/app/src/main/res/values-v31/styles.xml @@ -8,6 +8,7 @@ diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml index dcbf9a7..5f4ffa8 100644 --- a/android/app/src/main/res/values/styles.xml +++ b/android/app/src/main/res/values/styles.xml @@ -13,6 +13,7 @@ This Theme is only used starting with V2 of Flutter's Android embedding. --> diff --git a/lib/main.dart b/lib/main.dart index d941311..bbcf94d 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -19,7 +19,7 @@ Future main() async { WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setSystemUIOverlayStyle( const SystemUiOverlayStyle( - statusBarColor: Colors.transparent, + statusBarColor: Colors.white, statusBarIconBrightness: Brightness.dark, systemNavigationBarColor: _shellBackground, systemNavigationBarIconBrightness: Brightness.dark, @@ -76,7 +76,7 @@ class ImWebViewApp extends StatelessWidget { debugShowCheckedModeBanner: false, theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF1F6FEB)), - scaffoldBackgroundColor: _shellBackground, + scaffoldBackgroundColor: Colors.white, useMaterial3: true, ), home: H5ShellPage(initialShellBranding: shellBranding),