Ionic Slides - 2 slide on per view

I want to show 2 slides on single view and not the single slide and after sliding it continue to load 2 slide per view… How can I achieve this?

May be something like this? :slightly_smiling_face:

Vertical slides on same page

May be like this?

https://forum.ionicframework.com/t/multiple-ion-slides-on-the-same-page-how-to-apply-different-behaviour/100333/2?u=sahanpasindu

you can simply use slidesPerView properties

<ion-slides slidesPerView="2">
  <ion-slide>
    <h1>Slide 1</h1>
  </ion-slide>
  <ion-slide>
    <h1>Slide 2</h1>
  </ion-slide>
  <ion-slide>
    <h1>Slide 3</h1>
  </ion-slide>
</ion-slides>
1 Like