ionic-team / ng-cordova

OBSOLETE: Please move to Ionic Native https://github.com/ionic-team/ionic-native
https://github.com/ionic-team/ionic-native
MIT License
3.48k stars 1.06k forks source link

cordova-plugin-statusbar fails on iOS 11 #1434

Closed stripathix closed 6 years ago

stripathix commented 7 years ago

simulator screen shot jun 11 2017 at 8 04 22 am

Cordova status bar plugin is not rendering status bar as an overlay. Works fine on iOS 10.

Have this inside "deviceready":

$cordovaStatusbar.overlaysWebView(true);

lterodde320 commented 6 years ago

You can temporarily fix this issue by adding this script to your body tag of your document:

document.addEventListener("deviceready", function () { cordova.plugins.Keyboard.disableScroll(true); }, false);

stripathix commented 6 years ago

This issue is been fixed cordova side. Ref: https://issues.apache.org/jira/browse/CB-12886

vinimendes3 commented 6 years ago

@stripathix how did you solve this?