Hide tabs menu

Hello,

I cant to use tabs menu on all page but not on my login page.
My login page is the page who is launch when i open the app.

<ion-tabs>
  <ion-tab [root]="tab0Root" tabIcon="person"></ion-tab>
  <ion-tab [root]="tab1Root" tabIcon="home"></ion-tab>
  <ion-tab [root]="tab2Root" tabIcon="information-circle"></ion-tab>
  <ion-tab [root]="tab3Root" tabIcon="contacts"></ion-tab>
  <ion-tab [root]="tab4Root" tabIcon="cog"></ion-tab>
</ion-tabs>

I want to launch my app on the tab0Root page but hide the menu on this page and hide the tabs 0 on the tabs menu.

I don’t know how to explain this better :confused:

I hope will can help me ! :slight_smile:

I think it’s better that you have a login page and another that is your main one.

this.nav.setRoot (FirstRunPage);

Once you have your session started you can change your root page again

this.nav.setRoot (MainPage);