Currently all pages of my ionic project has the bottom tab bar on it. Is it possible I can hide the tabs for some pages?
you can using $rootscope
Ex:
Controller:
Tab1Controller -> $rootscope.hideTab = true
Tab2Controller -> $rootscope.hideTab = false
Views:
<ion-tabs ng-if="hideTab"></ion-tabs>
2 Likes
Is it possible to hide tabs on particular page in ionic2 ?
1 Like