离子状态栏没有隐藏

时间:2016-02-07 08:51:26

标签: javascript cordova ionic-framework phonegap-plugins statusbar

我添加了插件Cordova-plugin-statusbar。它在我更新离子和Cordova之前工作。更新后,它无法正常工作。我完全困惑并恢复旧版本,然后它也无法正常工作!请帮助我们!

 if (window.StatusBar) {
        StatusBar.hide();
        ionic.Platform.fullScreen();
    }

这是我以前隐藏的代码!

Status bar not hiding

1 个答案:

答案 0 :(得分:3)

确保cordova-plugin-statusbar设置正确并尝试此操作:

$ionicPlatform.ready(function() {
  ionic.Platform.fullScreen();
  if (window.StatusBar) {
    return StatusBar.hide();
  }
});

然后尝试添加全屏'类到你的身体标签

相关问题