Ionic - scroll within Ionic Slide not working

You should be able to fix that with CSS, changing the overflow and display settings of the “swiper-slide” class, something like:

.swiper-slide {
    overflow-y: scroll;
    display: block;
}
23 Likes