为什么我的状态栏在离子导航上结束了?
我的home.html
是这样的
<ion-header>
<ion-navbar color="royal">
<button ion-button icon-only menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>
Empreendimentos
</ion-title>
</ion-navbar>
app.components.ts
是这样的import { StatusBar } from '@ionic-native/status-bar';
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.overlaysWebView(true);
this.statusBar.backgroundColorByHexString('#4a148c');
this.splashScreen.hide();
});
}
这是我应用程序上的状态栏
最佳答案
我已经解决了如下问题
this.statusBar.overlaysWebView(false);
关于javascript - ionic 3上的 ionic 导航上的StatusBar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52123971/