Reputation: 156
i want to make home page like where i can swipe one post at a time in moile view. I have tried react swiper but react swiper is swipping post horizontally i want to swipe post vertically any idea how to make this ??
Upvotes: 1
Views: 9177
Reputation: 35
you can give it direction, just add direction prop like this
<Swiper
// install Swiper modules
slidesPerView="1"
mousewheel={true}
direction="vertical"
modules={[Pagination]}
pagination={{ clickable: true }}
scrollbar={{ draggable: true }}
>
Upvotes: 3