mirror of
https://github.com/inventree/inventree-app.git
synced 2025-08-11 06:50:53 +00:00
Ref: https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects Fixes for sentry reporting Ref: https://github.com/flutter/flutter/issues/48972
13 lines
590 B
XML
13 lines
590 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>
|
|
</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>
|