iOS WKwebview blank space at the bottom

Hi guys,

How can i remove this blank white space at the bottom? When is change my webview from CDVWKWebViewEngine to UIwebview all looks fine.

CDVWKWebViewEngine

UIwebview

Why you didn’t create app with F7-CLI? it doesn’t have such issues. Try adding these CSS lines:

html, body {
  width: 100vw;
  height: 100vh;
}

I did use the F7-CLI but will add this to my CSS and see what will happen, will let you know thank you!

Do you know why this problem is only with wkwebview plugin by the way?

It worked, thanks so much :slight_smile:

Thanks it worked for me too.