Simplify Theme.Base so that a change in the single Theme.Base will affect all modes regardless of version or theme.
18 lines
No EOL
944 B
XML
18 lines
No EOL
944 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Template theme that handles edge-to-edge on other styles variants -->
|
|
<style name="Theme.Template" parent="Theme.Master">
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@color/nav_color</item>
|
|
<item name="android:windowLightStatusBar">false</item>
|
|
<item name="android:windowLightNavigationBar">false</item>
|
|
</style>
|
|
|
|
<style name="Theme.BottomSheetFix" parent="@style/Theme.Design.BottomSheetDialog">
|
|
<item name="android:windowIsFloating">false</item>
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@color/background</item>
|
|
<item name="android:windowLightStatusBar">false</item>
|
|
<item name="bottomSheetStyle">@style/Theme.BottomSheetHeightFix</item>
|
|
</style>
|
|
</resources> |