So I\'m messing around a bit with Ionic 2, and I want to know how to disable the back button for a specific view.
What I\'m doing is this.nav.
In order to prevent hideBackButton
to hide your menu icon, use this css in your app.scss
:
ion-navbar[hidebackbutton] button[menutoggle] {
display: block !important;
}
or in case you want somewhere to be shown and somewhere not, change your selector as follow: ion-navbar[hidebackbutton].show-menu button[menutoggle]