I have simple tabs template Ionic 3 application in which, I am switching between the tabs whenever user swipes on view based on left or right I am switching between Tabs and
That's currently not possible with Ionic, but you can use this amazing plugin to achieve something like this:
In order to install it, just run
npm i --save ionic2-super-tabs
And then import SuperTabsModule.forRoot()
in your app's main module
import { SuperTabsModule } from 'ionic2-super-tabs';
@NgModule({
...
imports: [
...
SuperTabsModule.forRoot()
],
...
})
export class AppModule {}
Now everything is ready, so in your view you can do something like this: