From d69bc395e6cc9ed5e1da6a31835874142fe6800e Mon Sep 17 00:00:00 2001 From: Tim <contact@bytim.eu> Date: Sat, 8 Feb 2025 11:28:57 +0100 Subject: Initial commit --- android/app/src/main/res/values/styles.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 android/app/src/main/res/values/styles.xml (limited to 'android/app/src/main/res/values') diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off --> + <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar"> + <!-- Show a splash screen on the activity. Automatically removed when + the Flutter engine draws its first frame --> + <item name="android:windowBackground">@drawable/launch_background</item> + </style> + <!-- Theme applied to the Android Window as soon as the process has started. + This theme determines the color of the Android Window while your + Flutter UI initializes, as well as behind your Flutter UI while its + running. + + This Theme is only used starting with V2 of Flutter's Android embedding. --> + <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar"> + <item name="android:windowBackground">?android:colorBackground</item> + </style> +</resources> -- cgit v1.2.3