I have a requirement with slides to be available with ion menu. So i added slides within menu content. Then I faced issue with swipe. When swiping the menu is getting closed. To fix that I added swipeEnable=“false” to ion menu. Then I able to swipe the slides within menu. This solution is working fine in ios but not working in android, in which the entire swipe is disabled and even slides are not swipeable. Can some body throw some light to fix this issue in android. Below is my code. Thanks in advance.
<ion-menu type="overlay" swipeEnabled="false">
<ion-content>
<ion-slides>
<io-slide>
<h1>Page1</h1>
</ion-slide>
<ion-slide>
<h1>Page2</h1>
</ion-slide>
<ion-slide>
<h1>Page3</h1>
</ion-slide>
</ion-slides>
</ion-content>
</ion-menu>