ion-card horizontal

0

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?

    
asked by anonymous 30.10.2018 / 20:37

1 answer

1

I was able to solve with the answer from @ cnotethegr8 in the question:

link

    
31.10.2018 / 14:59