Search code examples
ioscordovaionic-framework

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?


Solution

  • 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.