I need help. When I start to slide on the left my 2nd card to nth is not showing.
<ion-content>
<div class="container">
<ion-slides pager slidesPerView="1.1">
<ion-slide *ngFor="let subject of cardData">
<ion-card class="cardList">
<ion-card-header>
<ion-card-title>
<h1> {{subject.title}}</h1>
</ion-card-title>
</ion-card-header>
<ion-card-content>
<h1> {{subject.description}}</h1>
</ion-card-content>
</ion-card>
</ion-slide>
</ion-slides>
</div>
</ion-content>
Am I missing Something?