Reputation: 33
I have an issue, when scrolling screen was jumping - the background appears blank white.
Can anyone help me?
Upvotes: 1
Views: 1732
Reputation: 390
In case of Ionic Vue
<ion-content :force-overscroll="false">
https://ionicframework.com/docs/api/content
Upvotes: 0
Reputation: 453
So I also faced this issue but then too I didn't solve my problem in IONIC 3 iOS build.
So you have to just go to Page html file and update -
<ion-content class="no-scroll">
Then go to page scss file and update the css-
.no-scroll {
div.scroll-content {
overflow-y: hidden;
}
This will work. Happy coding!!
Upvotes: 0