Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ionic 2 - Disabling back button for a specific view

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.push(SomePage); It works, but the NavController automatically puts a back button there for me. How do I disable the back button?

NOTE: I do know that I can use this.nav.setRoot(SomePage) to set the SomePage as root and not have a back button, but that doesn't provide the useful animation that NavController automatically does.


EDIT: This question is somewhat old, but it has garnered some attention, so I think it would also be appropriate to mention for future reference that there's another reason you may not want to use this.nav.setRoot in order to push a page with no back button: it erases the preexisting stack of pages. So if you wanted to still be able to go back to the previous page in code without giving the user a UI way to do so, setRoot wouldn't allow you to do that.

like image 800
naiveai Avatar asked May 18 '16 10:05

naiveai


3 Answers

Option 1

Hide it in the view by adding the hideBackButton attribute to the ion-navbar component

<ion-navbar hideBackButton="true">
    <ion-title>Sub Page</ion-title>
</ion-navbar>

Option 2

Hide it from within the page class by using the .showBackButton(bool) method provided by the ViewController class

import { NavController, ViewController } from 'ionic-angular';

export class SubPage {

    constructor(public navCtrl: NavController, private viewCtrl: ViewController) { }

    ionViewWillEnter() {
        this.viewCtrl.showBackButton(false);
    }

}

A comment from the Ionic docs

Be sure to call this after ionViewWillEnter to make sure the DOM has been rendered.

Note

I'd just like to add that these options don't take into account when the hardware back button is pressed. The hardware back button is still likely to cause the active page to pop from the nav stack.

like image 196
Will.Harris Avatar answered Oct 19 '22 11:10

Will.Harris


Ionic2 hides the menu button, if you are not on the root page and shows the back button.

As you said, the animation is missing with:

this.view.setRoot(SomePage);

Write this for an animation with "back" or "forward":

this.nav.setRoot(SomePage, {}, {animate: true, direction: "forward"});

Okay, what if I need the default animation which is provided and is not "forward" or "back"?

There are some ways:

1. This will provide the default animation

In your current Page, write:

this.nav.insert(0, SomePage).then(() => {
    this.nav.popToRoot();
});

2. Don't set it as root for whatever reason

this.view.push(SomePage);

Okay fine, now we need to take care of a view things.

  1. part: Hide the back button
  2. part: Because the page is not the root anymore we need to show the normal menu icon again (otherwise there wouldn't be any icon at all after just hiding the back button).

Notice the menuIsHidden property.

export class SomePage {
    // Part 2:
    menuIsHidden: boolean = false;

    constructor(private nav: NavController, private view: ViewController) {}

    // ionic2 will call this automatically
    ionViewWillEnter() {
        // Part 1:
        this.view.showBackButton(false);
    }
}

somePage.html

<ion-header>
 <ion-navbar>
    <button menuToggle [hidden]="menuIsHidden">
      <ion-icon name="menu"></ion-icon>
    </button>
    <ion-title></ion-title>
  </ion-navbar>
</ion-header>

I hope this will help someone.

like image 23
Stefan Rein Avatar answered Oct 19 '22 11:10

Stefan Rein


You can use the following Property Decorator in Ionic 2.0.0-rc.6

  <ion-header>
    <ion-navbar hideBackButton="true">
      <ion-title>
        Your page title
      </ion-title>
    </ion-navbar>
  </ion-header>

Docs reference

like image 6
0x1ad2 Avatar answered Oct 19 '22 11:10

0x1ad2