Hi, I have the following code in which I have a page in which I have 2 sliders:
<ion-row padding-left>
<ion-col style="padding-bottom: 0;">
<ion-slides zoom="false" style="padding: 0; ">
<ion-slide [class.oculto]="!oculto" *ngFor="let video of lista.videos">
<button class="boton-slider" (click)="verVideo(video, lista.nombre)">
<ion-thumbnail>
<img [src]="video.miniatura">
</ion-thumbnail>
<div *ngIf="video.visto" class="video-visto-lista">
<ion-chip color="primary">
<i class="icon-sm icon-ophthalmology" aria-hidden="true"></i>
<span class="label-chip">Visto</span>
</ion-chip>
</div>
<p class="titulo-video">{{video.titulo}}</p>
</button>
</ion-slide>
</ion-slides>
<ion-slides style="height: 0;"></ion-slides>
</ion-col>
</ion-row>
Then my problem is that even if there are no more elements, the slides keeps going now and then I can’t scroll back to the left. Here is a gif:
Please help