Hide Ion-tabs Ionic 1

0

I'm having a problem with the application's tabs. The application I am developing has a chat screen and on this screen I want to hide the tabs. I already tried to use $ionicTabsDelegate.showBar(false); the tabs really get the display: none but a white bar is in place of this tabs. Does anyone know of any way to get around this problem?

    
asked by anonymous 28.09.2017 / 14:55

1 answer

0

Use ng-if

<ion-footer-bar class="bar-stable" ng-if="!hidebars">
    
28.09.2017 / 22:07