Already tried to achieve this with:
<ion-router-outlet swipeGesture="false" animated="false"></ion-router-outlet>
and in app.module:
IonicModule.forRoot({
swipeBackEnabled: false
}),
config.xml:
<preference name="AllowBackForwardNavigationGestures" value="false" />
..but horizontal swipe gestures still trigger navigation to other pages :-(
Possible ways i can think of and tried partially but unsuccessfully are:
- use deprecated ionic navController somehow?
- use hammerJS?
- use undocumented GestureController (https://github.com/ionic-team/ionic/tree/a77ee2a6f88e8defb1763b71e77410264fafac70/core/src/utils/gesture)
If someone can point in the right direction or provide an example how to disable swiping, mainly for iOS, i would be very glad, thx a lot