In Ionic 2 beta 11, is there anyway to hide the tabs after navigating to a tab component?
I tried to hide the tabs using
(document.querySelector(‘ion-tabbar’)).style.display = ‘none’;
The tabs are hidden fine.
But if I then try to show the tabs by
var t: Tabs = this.nav.parent;
(document.querySelector(‘ion-tabbar’)).style.display = ‘block’;
t.select(0);
the tabs are not displayed correctly. They are displayed vertically, instead of in a row.
Thanks!