Is there any way for the ion-card to grow horizontally and not vertically?
It is populated by data coming from the api
<ion-card *ngFor="let filmes of lista_filmes_popular">
<img [src]="'https://image.tmdb.org/t/p/w500/' + filmes.backdrop_path" />
<ion-card-content>
<ion-card-title>
{{filmes.original_title}}
</ion-card-title>
<p>
{{filmes.overview}}
</p>
</ion-card-content>
</ion-card>
Is there any way in it's Ionic to go horizontally and scroll horizontally?