在Ionic应用程序中隐藏导航栏

时间:2016-06-15 18:38:17

标签: android ios cordova ionic-framework

在我的移动应用程序的登录屏幕上,我想通过离子隐藏默认导航栏。我希望屏幕是全尺寸没有任何标题栏。我在下面的链接中看到了很多答案:

Good pattern for hiding ion-nav-bar on login and not having a back button just after login?

how to hide header bar in ionic?

但它没有解决实际问题。我可以隐藏导航栏,但是顶部的导航栏会占用空白区域,而这些空格并没有被删除。

任何线索?

1 个答案:

答案 0 :(得分:1)

你可以在css,

的帮助下完成
<style>
  .tab-nav, .bar-footer{
    display: none !important;
  }

 .bar.bar-header {
   display: none
  }

  .has-tabs-top {
    top: 0px !important;
  }
  .has-tabs-bottom {
    bottom: 0px !important;
  }
  .has-tabs, .bar-footer.has-tabs, .has-footer.has-tabs {
    bottom: 0px;
  }
  /* custom header footer overrides */
  .custom-header, .custom-footer{
    display: block !important;
  }
</style> 

这会隐藏页眉页脚和标签栏,只需将其粘贴到您登录页面ion-view的外部(下方)。