-
Notifications
You must be signed in to change notification settings - Fork 272
ios keyborad jumps down and up #174
Comments
I'm still pretty new to all this so I don't have any deep insight on the pitfalls of what you're trying.
Hopefully it's just your typo. Cheers |
This issue can usually be fixed by adding: However, as i have discovered, it breaks cordova-plugin-inappbrowser. Unfortunately this issue is so inconsistent that nobody is fixing it. For reference: ionic-team/ionic-framework#5489 (comment) |
Hi, So this issue is compounded slightly with Okta as an authentication provider for a TFA / SSO workflow. Enabling the accessory bar to get a 'Done' option on iOS is working fine, but the screen is scrolling and the method to disable it doesn't affect the UI: It's not a show stopper for me, but the inconsistent behavior is unfortunate. |
I am using ionic-plugin-keyboard and I am working on a chat application. I am using the following code in my controller:
.controller('ChatDetailCtrl', function ($scope, $stateParams, $ionicScrollDelegate, $interval, Chats, $rootScope, $timeout) {
})
Also I am using the directive:
.directive('onLastRepeat', function () {
on config xml I am using:
on $ionicPlatform.ready I am using:
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
On android platform everything is ok for both cases(send-receive message).
On ios platform send has normal behaviour but on receive message my keyborad jumps down and up again.
This happens after (viewScroll.scrollBottom(true);)
I want my keyboard stable and on receive message and just scrolling to the bottom like andoid.
I know that window.cordova.plugins.Keyboard.show(); uses only for andtoid platform.
What is going on? Can you please help me?
The text was updated successfully, but these errors were encountered: