Works for me, thanks!
Hi anyone got fix for this issue. I am a contractor if i dont fix this I may loose my job. I tried all the above suggessions but none of them worked
yes i solve this issue you need to install corodva keyboard pluggin
cordova plugin add ionic-plugin-keyboard
then after in app.js
.run(function ($ionicPlatform) {
$ionicPlatform.ready(function () {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
cordova.plugins.Keyboard.disableScroll(true);
}
})
main thing here is
cordova.plugins.Keyboard.disableScroll(true);
do cordova plugin add ionic-plugin-keyboard --save
Note the --save
For me the issue was this plugin is not embedded for ios or android because there was no entry in config.xml
By doing --save ionic add the entry in config.xml as well.
This works for me, Thanks men
I noticed that sometimes this behavior is broken when you have the ionic keyboard plugin installed along with the cordova keyboard plugin. Just install de ionic keyboard plugin. Uninstall any other keyboard plugins.
Solved it by removing
ionic cordova plugin rm ionic-plugin-keyboard
Thank you Uxman!
This fixed the issue for us.