I have encountered an issue with the ion-slides
component where the slide content height exceeds the view and prevents scrolling to see the rest of the content. How can I scroll down to view the entire slide content?
Here is the HTML code I am using:
<ion-content>
<ion-slides>
<ion-slide>
<div>...</div>
</ion-slide>
</ion-slides>
</ion-content>
Various solutions I have attempted include:
<ion-content>
<ion-slides style="height: 100%">
<ion-slide style="height: 100vh">
<div>...</div>
</ion-slide>
</ion-slides>
</ion-content>
<ion-content>
<ion-slides style="height: 100vh">
<ion-slide style="height: 100%">
<div>...</div>
</ion-slide>
</ion-slides>
</ion-content>
<ion-content>
<ion-slides style="height: 100%">
<ion-slide>
<div>...</div>
</ion-slide>
</ion-slides>
</ion-content>