Skip to content

Commit ef43782

Browse files
committed
feat: change Android status bar to white background with black icons
1 parent e5cceb4 commit ef43782

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414
This Theme is only used starting with V2 of Flutter's Android embedding. -->
1515
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
1616
<item name="android:windowBackground">?android:colorBackground</item>
17+
<item name="android:statusBarColor">@android:color/white</item>
18+
<item name="android:windowLightStatusBar">true</item>
1719
</style>
1820
</resources>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414
This Theme is only used starting with V2 of Flutter's Android embedding. -->
1515
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
1616
<item name="android:windowBackground">?android:colorBackground</item>
17+
<item name="android:statusBarColor">@android:color/white</item>
18+
<item name="android:windowLightStatusBar">true</item>
1719
</style>
1820
</resources>

0 commit comments

Comments
 (0)