SplitPane browser on iOS - disable swipeBackEnabled

Is there still a known problem with disabling swipeBackEnabled on iOS browser?
I am not using Tabs.

<ion-nav [root]=“rootPage” #content swipeBackEnabled=“false” main>

The above doesn’t seem to work. If I swipe for the sidemenu, my nav stack pops.

I have also tried the following on individual pages.

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

ionViewWillLeave() {
this.navCtrl.swipeBackEnabled = true;
}

1 Like