I have created a simple ionic slider just to show what is the issue. I have an ionic slide with an input filed when I type something the keyboard appears and without returning the keyboard if I left swipe the ionic slide get stuck between two slides. This does not happen if I do right swipe or if I hide manually keyboard before doing the left swipe.
To fix this issue I tried to call hide.keyboard() before left swipe but still the issue occurs. I am stuck in this issue from last 5 days please help.
my slider html :-
<ion-slides >
<ion-slide *ngFor="let data of dataRetrived; let idx = index">
<ion-card>
<ion-card-content class="card">
<ion-label> test </ion-label>
<ion-item>
<ion-input maxlength="150"
placeholder="Please enter your caption here" class="ion-text-left"></ion-input>
</ion-item>
</ion-card-content>
</ion-card>
</ion-slide>
</ion-slides>