Shun Kyoo
Shun Kyoo

Reputation: 33

Ionic 3: jumps whole app when scrolling screens

I have an issue, when scrolling screen was jumping - the background appears blank white.

enter image description here

Can anyone help me?

Upvotes: 1

Views: 1732

Answers (3)

perezmlal
perezmlal

Reputation: 390

In case of Ionic Vue

<ion-content :force-overscroll="false">

https://ionicframework.com/docs/api/content

Upvotes: 0

Vishwa Deepak Singh
Vishwa Deepak Singh

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

David
David

Reputation: 7507

Your question is not very clear but I think you want to disable the overscroll effect. Add the following to your config.xml as child element of the <widget> element:

 <preference name="DisallowOverscroll" value="true" />

You can find the related docs here.

Upvotes: 4

Related Questions