Nativescript如何隐藏屏幕底部的标签栏

时间:2020-10-05 04:18:53

标签: ios nativescript nativescript-angular

我想在其中一个屏幕的底部隐藏导航栏。我不愿意通过CSS设置它

visibility:collapse;

并以编程方式

 let tab: TabStrip = this.page.getViewById("btm-tab");
        tab.visibility = Visibility.collapse;
 //and tried this as well 
 //tab.viewController.tabBar.hidden = true;

但是它可以在android上运行,但是在IOS上它会在酒吧所在的地方显示空白。如何也可以折叠IOS上的Tabstrip。我正在为本地脚本使用angular。我已经查看了stackoverflow上提供的一些解决方案,但是它对我没有用。

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为问题在于这不是“崩溃”,正确的行应该是

visibility: collapsed;

测试一下,稍后再告诉我:)