how to hide the keyboard in a multi device hybrid app

182 Views Asked by At

I have a javascript based multi-device-hybrid-app that targets both IOS and Andriod and cannot find any information on how to hide the keyboard when a submit button is clicked.

How would I do this ?

1

There are 1 best solutions below

0
On

You can use Ionic Cordova plugin to hide keyboard, you can download the plugin from here

cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);

Refer SO post 'Installing Plugins to Visual Studio Cordova project' to add custom plugin from Git in Visual Studio