You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I defined that the status-bar does not overlay the WebView via StatusBar.overlaysWebView(false) and it seems that this is not considered by cordova.plugins.Keyboard.shrinkView(true).
When I open the keyboard, the view shrinks but it is slipping under the statusbar.
I am testing on iPhone 11 Pro with iOS 13.4
Any idea?
The text was updated successfully, but these errors were encountered:
"Solution" was to manually hide and show Statusbar after keyboard hide: window.addEventListener('keyboardDidHide', function () { StatusBar.hide(); StatusBar.show(); });
I am using this keyboard plugin in a project together with the status-bar plugin (https://github.com/apache/cordova-plugin-statusbar).
I defined that the status-bar does not overlay the WebView via StatusBar.overlaysWebView(false) and it seems that this is not considered by cordova.plugins.Keyboard.shrinkView(true).
When I open the keyboard, the view shrinks but it is slipping under the statusbar.
I am testing on iPhone 11 Pro with iOS 13.4
Any idea?
The text was updated successfully, but these errors were encountered: