Type input ionic

I need to know if there is any option of the “OK” button that exists on some keyboards, sometimes I find it very difficult to leave the keyboard and move on to another option. I show:

image

image

You need to remove the code that hides the accessory bar (this can be found in app.js if you haven’t moved it):

// 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(true);
}

Here’s another topic on this:

1 Like