14 lines
818 B
XML
14 lines
818 B
XML
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
<item name="android:enforceNavigationBarContrast" tools:targetApi="29">true</item>
|
|
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
<item name="android:statusBarColor">#ffffff</item>
|
|
</style>
|
|
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
|
|
<item name="windowSplashScreenBackground">@color/splashscreen_background</item>
|
|
<item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item>
|
|
<item name="postSplashScreenTheme">@style/AppTheme</item>
|
|
<item name="android:windowSplashScreenBehavior">icon_preferred</item>
|
|
</style>
|
|
</resources> |