mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 22:03:55 +03:00
Merge PR #1087.
This commit is contained in:
commit
9ad4beddce
6
android/app/src/main/res/values-v27/styles.xml
Normal file
6
android/app/src/main/res/values-v27/styles.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="LaunchTheme" parent="LaunchThemeBase">
|
||||
<item name="android:windowLightNavigationBar">false</item>
|
||||
</style>
|
||||
</resources>
|
@ -2,10 +2,11 @@
|
||||
<resources>
|
||||
|
||||
<style name="LaunchTheme" parent="LaunchThemeBase">
|
||||
<item name="android:windowLightNavigationBar">false</item>
|
||||
<item name="android:navigationBarColor">@android:color/transparent</item>
|
||||
</style>
|
||||
|
||||
<style name="NormalTheme" parent="Theme.MaterialComponents.DayNight">
|
||||
<style name="NormalTheme" parent="BaseTheme">
|
||||
<item name="android:defaultFocusHighlightEnabled">false</item>
|
||||
<item name="android:navigationBarColor">@android:color/transparent</item>
|
||||
</style>
|
||||
|
8
android/app/src/main/res/values-v31/styles.xml
Normal file
8
android/app/src/main/res/values-v31/styles.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="LaunchTheme" parent="LaunchThemeBase">
|
||||
<item name="android:windowLightNavigationBar">false</item>
|
||||
<item name="android:navigationBarColor">@android:color/transparent</item>
|
||||
<item name="android:windowSplashScreenBackground">@color/yubico_green</item>
|
||||
</style>
|
||||
</resources>
|
@ -1,14 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<resources>
|
||||
|
||||
<style name="LaunchThemeBase" parent="Theme.MaterialComponents.DayNight">
|
||||
<style name="BaseTheme" parent="Theme.MaterialComponents.DayNight">
|
||||
<item name="colorPrimary">@color/yubico_green</item>
|
||||
<item name="colorPrimaryVariant">@color/yubico_green</item>
|
||||
<item name="colorPrimaryDark">@color/yubico_green</item>
|
||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||
</style>
|
||||
|
||||
<style name="LaunchThemeBase" parent="BaseTheme">
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
||||
<item name="android:windowTranslucentStatus">true</item>
|
||||
<item name="android:windowLightNavigationBar" tools:targetApi="27">false</item>
|
||||
<item name="android:fitsSystemWindows">false</item>
|
||||
</style>
|
||||
|
||||
@ -16,9 +19,8 @@
|
||||
<item name="android:navigationBarColor">@color/yubico_green</item>
|
||||
</style>
|
||||
|
||||
<style name="NormalTheme" parent="Theme.MaterialComponents.DayNight">
|
||||
<style name="NormalTheme" parent="BaseTheme">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||
</style>
|
||||
|
||||
<style name="NdefActivityTheme" parent="NormalTheme">
|
||||
|
Loading…
Reference in New Issue
Block a user