mirror of
https://github.com/inventree/inventree-app.git
synced 2026-07-04 11:50:45 +00:00
17 lines
859 B
XML
17 lines
859 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
|
<!-- Show a splash screen on the activity. Automatically removed when
|
|
Flutter draws its first frame -->
|
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
|
<item name="android:forceDarkAllowed">false</item>
|
|
<item name="android:windowFullscreen">true</item>
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
|
</style>
|
|
<!-- You can name this style whatever you'd like -->
|
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
|
</style>
|
|
</resources>
|