-
-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporary fix for no Android 35 system bars
- Loading branch information
1 parent
0bc00ce
commit 6d94dd5
Showing
3 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge"> | ||
<!-- Customize your theme here. --> | ||
<item name="colorPrimary">@color/colorPrimary</item> | ||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> | ||
<item name="colorAccent">@color/colorAccent</item> | ||
<item name="buttonStyle">@style/SlimButton</item> | ||
<item name="android:windowLightStatusBar">false</item> | ||
<item name="android:navigationBarColor">@color/colorPrimary</item> | ||
<item name="android:windowLightNavigationBar">false</item> | ||
<item name="android:windowSplashScreenBackground">@color/colorPrimary</item> | ||
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> | ||
|
||
<!-- Theme for the Preferences --> | ||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.Bridge"> | ||
<!-- Customize your theme here. --> | ||
<item name="colorPrimary">@color/colorPrimary</item> | ||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> | ||
<item name="colorAccent">@color/colorAccent</item> | ||
<item name="buttonStyle">@style/SlimButton</item> | ||
<item name="android:windowLightStatusBar">true</item> | ||
<item name="android:navigationBarColor">@color/colorPrimary</item> | ||
<item name="android:windowLightNavigationBar">true</item> | ||
<item name="android:windowSplashScreenBackground">@color/colorPrimary</item> | ||
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> | ||
|
||
<!-- Theme for the Preferences --> | ||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item> | ||
</style> | ||
</resources> |