Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
5.2.0
-
None
-
iOS 8
Description
If cordova-plugin-statusbar is enabled and the StatusBarOverlaysWebView config option is set to false, the webview appears to end up being the wrong height.
This causes a scrollbar to appear which I'm actually struggling to hide or remove (on <html>, <body>, etc).
To reproduce, add the cordova-plugin-statusbar plugin, set StatusBarOverlaysWebView to false, StatusBarBackgroundColor to #000000 and StatusBarStyle to blackopaque. Then use the following HTML and deploy to an iOS device. Touching and dragging will show a vertical scrollbar on the right.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height">
</head>
<body></body>
</html>
I'm starting to think that this could actually be a native scrollbar (which cannot be removed/hidden with any amount of html/css), due to the webview component going out of view. I don't know enough about iOS dev to look into this currently though.