With simple reproduction
config = {
...
loop: true,
...
}
<ion-slides (options)="config">
<ion-slide *ngFor="let item of [1, 2, 3]">
<div (click)="clickedMe()">Content goes here</div>
</ion-slide>
</ion-slides>
clickMe() {
console.log('hey me clicked');
}
Loop is not working properly. Actually because of loop we should see 4th item, (which is actually first one) but click event is not firing.
Any clue?