Open alextrs opened 10 years ago
HI tried the above patch in 2 separate plugins : org.apache.cordova.statusbar and com.phonegap.plugin.statusbar. Both times that I implemented that the behavior of the webview is not changing. When the Ad is shown the webview get and incorrect margin [like the toolbar would be ignored].
I am using in the js cordova code : StatusBar.overlaysWebView(false); to prevent a bug appearing in IOS7.
I ma having the same issue, and not resolved using provided solution.
Looks like there is an issue with the way this plugin moves and resizes webView. In iOS 7 status bar covers the top of main view. You can change this behaviour using this plugin 'com.phonegap.plugin.statusbar' (move webView down 20px), but this plugin after initialization moves webView back to top. Looks like by changing the following code:
To:
Resolves the issue, but I'm not sure what else it can break.