We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e39691f commit 8d348dbCopy full SHA for 8d348db
src/plugins/system/android/com/foxdebug/system/System.java
@@ -1730,7 +1730,7 @@ private void applySystemBarTheme() {
1730
// Keep Cordova's BackgroundColor flow for API 36+, but also apply the
1731
// window colors directly so OEM variants do not leave stale system-bar
1732
// colors behind after a theme switch.
1733
- window.clearFlags(0x04000000); // FLAG_TRANSLUCENT_STATUS
+ window.clearFlags(0x04000000 | 0x08000000); // FLAG_TRANSLUCENT_STATUS | FLAG_TRANSLUCENT_NAVIGATION
1734
window.addFlags(0x80000000); // FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
1735
1736
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
0 commit comments