Skip to content

Commit 2b81d4d

Browse files
empratyushthestinger
authored andcommitted
fix navigation bar color on three button navigation system
1 parent 5a55c80 commit 2b81d4d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/src/main/res/values-night/styles.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<resources>
1+
<resources xmlns:tools="http://schemas.android.com/tools">
22

33
<!-- Base application theme. -->
44
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
55
<!-- Customize your theme here. -->
66
<item name="colorPrimary">#DEFFFFFF</item>
77
<item name="android:statusBarColor">@android:color/transparent</item>
88
<item name="android:navigationBarColor">@android:color/transparent</item>
9+
<item name="android:windowLightNavigationBar" tools:ignore="NewApi">false</item>
910
</style>
1011

1112
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.Material3.DynamicColors.Dark" />

app/src/main/res/values/styles.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<resources>
1+
<resources xmlns:tools="http://schemas.android.com/tools">
22

33
<!-- Base application theme. -->
44
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
55
<!-- Customize your theme here. -->
66
<item name="colorPrimary">#000000</item>
77
<item name="android:statusBarColor">@android:color/transparent</item>
88
<item name="android:navigationBarColor">@android:color/transparent</item>
9+
<item name="android:windowLightNavigationBar" tools:ignore="NewApi">true</item>
910
</style>
1011

1112
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.Material3.DynamicColors.Dark" />

0 commit comments

Comments
 (0)