如何使用Ionic 2隐藏虚拟按钮和标题栏?

时间:2016-05-31 16:09:02

标签: ionic-framework ionic2

enter image description here

我正在开发一款Ionic 2 Android应用程序。 我想知道如何隐藏底部的控制按钮(“←O口”)以及顶部的标题栏?

1 个答案:

答案 0 :(得分:0)

根据此question,我们可以使用以下代码隐藏Ionic 2中的状态栏:

import {StatusBar} from 'ionic-native';
import {App, Platform} from 'ionic-angular';
//He wrotes 'ionic/ionic', but it doesn't work for me.
constructor(private platform: Platform) {
    this.platform.ready().then(()=>{
        StatusBar.hide();
    }
}