styles.xml 1.0 KB

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
  4. <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
  5. <item name="android:forceDarkAllowed">false</item>
  6. <item name="android:windowFullscreen">false</item>
  7. <item name="android:windowDrawsSystemBarBackgrounds">false</item>
  8. <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
  9. </style>
  10. <!-- Theme applied to the Android Window as soon as the process has started.
  11. This theme determines the color of the Android Window while your
  12. Flutter UI initializes, as well as behind your Flutter UI while its
  13. running.
  14. This Theme is only used starting with V2 of Flutter's Android embedding. -->
  15. <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
  16. <item name="android:windowBackground">?android:colorBackground</item>
  17. </style>
  18. </resources>