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:
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
I solved it by adding [swipeGesture]="false"
to the ion-router-outlet
as described here: https://github.com/ionic-team/ionic/issues/16441
At first, I made the mistake of adding it to all ion-router-outlet
s in my tabs.html
file. That didn't work. Instead, you only have to add it to the ion-router-outlet
in the app.component.html
file. That did the trick for me.
app.component.html
<ion-app>
<ion-router-outlet [swipeGesture]="false"></ion-router-outlet>
</ion-app>
I'm using ionic version 4.0.0-beta.17
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With