Status bar in Ionic keeps flashing or stays white
The status bar in our and the ionic example (list and conferenceapp) apps flashes white and then stays white.
It sometimes keeps flashing which is annoying.
Solution 1:
open androidmanifest.xml file
edit the line
android:theme="@style/AppTheme.NoActionBarLaunch"
change it to:
android:theme="@android:style/Theme.Translucent"
Then save
solution 2:
disable the CSS Trick of the .menu-content CSS class
.platform-android8_1 .menu-content, // ionic 3
.plt-android .menu-content {
transform: none
}
Comments