@akr_rajkumar wrote:
Hi,
I wanted to do tab swipe in ion-tabs.
After various attempts, finally I tried a method,
<ion-content (swipe)=“swipeEvent($event)” >
swipeEvent(e){
if(e.direction==2)
this.navCtrl.parent.select(2);
if(e.direction==4)
this.navCtrl.parent.select(0);
}It is working with browser but not in the device. How to make my ion-tabs swipe to move to next/previous tabs
Posts: 1
Participants: 1