Closed BerkeAras closed 4 years ago
@BerkeAras Thank you. I tried, but can't reproduce with both opened menu and drawer. Please share some code.
@roman-rr https://jsfiddle.net/umy4vn91/
@BerkeAras
Please try this solution (Disable/Enable gesture) on your scope
<ion-menu [swipeGesture]="swipeGesture">
And controller
public swipeGesture:boolean = true;
constructor() {}
ngOnInit() {
this.drawer = new CupertinoPane('.ion-drawer', {
...
onWillPresent: () => this.swipeGesture = false,
onDidDismiss: () => this.swipeGesture = true
});
this.drawer.present({animate: true});
}
@BerkeAras Already able touchMoveStopPropagation
property with the latest commit,
and will be able in next release within 1 week.
Simply set
let settings = {
...
touchMoveStopPropagation: true
}
To fix this issue.
Describe the bug IonMenu is swipable through the Cupertino-Pane Backdrop
To Reproduce Just create Ionic App with Menu and open Drawer.
Expected behavior It should not be swipable.