I have horizontal list of ion-cards in ion-scroll. While sliding through them on iOS you very often accidentally fire click event on the card when you just want to slide.
Is there a way to disable click events while scrolling (maybe even few ms after scrolling stops)?
Thanks
Source example:
<ion-scroll scrollX="true">
<ion-row>
<ion-col *ngFor="let saleProduct of data.sales" (click)="productDetail(saleProduct)" tappable>
<ion-card>
<div class="image-wrapper">
<img src="...">
</div>
<ion-item>
<p>...</p>
</ion-item>
</ion-card>
</ion-col>
</ion-row>
</ion-scroll>