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?
May be like this?
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