Hide navigation arrow - Ionic

1

Good Afternoon

I have a problem and I need to know how to hide the set of back (navigation) in some specific pages, somebody has some solution. Thanks in advance.

    
asked by anonymous 07.06.2018 / 19:12

1 answer

0

I think there are two ways to hide the back button on the Ionic one is using NavController when you want to go to a page without back button use:

this.navCtrl.setRoot(IrparaPaginaSemBackButton);

Another way is to own the html page type:

   <ion-navbar hideBackButton>
    <ion-title>Perfil</ion-title>
</ion-navbar>

Where the hideBackButton option will hide the Ionic auto-button

    
20.06.2018 / 03:27