首页 文章

Ion-tabs和hide-nav-bar留出空间,顶部为0px

提问于
浏览
0

我想在选项卡中的视图上隐藏导航栏( ion-tab

.tabs 上也尝试了 top:0hide-nav-bar also

显然在 ion-view 如果我使用 hide-nav-bar 它会留下标签空间并使其顶部:0px( .tabs { top: 0 !important; } )在内容和标签之间留出空间

见下图

在离子视图上使用 hide-nav-bar 时:

enter image description here

使用 .tabs { top: 0 !important; }

enter image description here

但是,导航栏隐藏在标签底部,底部没有空间,有没有任何解决方案可以隐藏导航栏而不留任何空间

1 回答

  • 2

    现在解决了,想分享这个

    这是因为正在添加到ion-content元素的.has-tabs-top类 .

    在视图中添加了 hide-nav-bar.tabs { top: 0 !important; }

    .has-tabs-top {
      top: 49px !important; /*  height of the tabs */
    }
    

相关问题