Hello, I want implement the sliding tabs, Is there a way to implement sliding tabs in ionic2, I tired with:
<ion-slides class="indibox" #mySlider >
<ion-slide>
<ion-tab [root]="cars" [rootParams]="fooId" tabTitle="cars" tabIcon="pulse"></ion-tab>
</ion-slide>
<ion-slide>
<ion-tab [root]="bikes" [rootParams]="fooId" tabTitle="bikes" tabIcon="pulse"></ion-tab>
</ion-slide>
<ion-slide>
<ion-tab [root]="ships" [rootParams]="fooId" tabTitle="ships" tabIcon="pulse"></ion-tab>
</ion-slide>
<ion-slide>
<ion-tab [root]="aeroplane" [rootParams]="fooId" tabTitle="Aeroplane" tabIcon="pulse"></ion-tab>
</ion-slide>
<ion-slide>
<ion-tab [root]="tankers" [rootParams]="fooId" tabTitle="tankers" tabIcon="pulse"></ion-tab>
</ion-slide>
</ion-slides>
But this did not work. Can I get the inputs on how to achieve it?