I am using Ionic lib 1.2.4
I am trying to tab through inputs using accessory bar, but when it scrolls up to position the inputs below viewport, it scrolls them all the way up under the header and status bar.
I have following config set
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
cordova.plugins.Keyboard.disableScroll(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
How should i fix this? Am I missing something?
Check the attached gif to understand the issue under simulator.