You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here it was only transparent by modifying the function.
initializeApp() {
this.platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
// this.statusBar.styleDefault();
// Transparent status bar for android
// #AARRGGBB where AA is an alpha value
// if (this.platform.is('android')) {
this.statusBar.overlaysWebView(true); // add this
this.statusBar.backgroundColorByHexString("#33000000");
// }
this.splashScreen.hide();
});
}
IONIC CLI 3.19.0
The text was updated successfully, but these errors were encountered:
Here it was only transparent by modifying the function.
IONIC CLI 3.19.0
The text was updated successfully, but these errors were encountered: