Hi,
I need to disable ios swipe on specific pages, but I can’t find a way to do it.
I also tried some solutions, but none is compatible with Ionic 5. For example, in ionic 2 you can use:
<ion-view can-swipe-back="false">
I need the equivalent from ionic 5, applicable to <ion-content>
tags
In Ionic 5, i could disable swipe on ALL pages by adding the following to the app.module, but i need a way to disable only in specific pages:
IonicModule.forRoot({
swipeBackEnabled: false
}),
Ionic: v5.16.0
Angular: v8.2.8
Thanks!