Hello, ion-slide does not work properly inside an ion-tab.
when ion-slide is added inside a page example:
tab1Root page
<ion-header>
<ion-navbar>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding class="home">
<ion-slides>
<ion-slide>
<h1>Slide 1</h1>
</ion-slide>
<ion-slide>
<h1>Slide 2</h1>
</ion-slide>
<ion-slide>
<h1>Slide 3</h1>
</ion-slide>
</ion-slides>
</ion-content>
tab page:
<ion-tabs> <ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="home"></ion-tab> <ion-tab [root]="tab2Root" tabTitle="About" tabIcon="information-circle"></ion-tab> <ion-tab [root]="tab3Root" tabTitle="Contact" tabIcon="contacts"></ion-tab> </ion-tabs>
I am unable to drag the slidebox to the next slide. if i remove the ion-tab and directly show the slides, it works well.
Even by explicitly calling slideTo() does not work.
However, i noticed if i change the size of the browser several times, then only it works.
Any suggestions please?
Thanks!