[SOLVED] Override swipe to go back gesture (swipeBackEnabled only on one selected page)

Super duper works like a charm! Thx a lot @Ellezo

In the child page:

constructor(private nav:Nav) {}

ionViewWillEnter() {
   this.nav.swipeBackEnabled = false;
}

ionViewWillLeave() {
    this.nav.swipeBackEnabled = true;
}
8 Likes