[SOLVED] IOS navbar pulled down when scrolling

hi,
i create my app and in android all is good, but in IOS when i want to scroll down my list, the navigation bar come down too. how can i fix navigation bar in IOS?
i use f7 v3 vuejs

If it is web app then you can’t fix it. If it is a Cordova app - use forum search, there were plenty of similar tooics

In config.xml:

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

thanks, its worked…

I had the same issue. And fix was

html,
body {
  position: fixed;
  overflow: hidden;
}