Cordova Ionic Keyboard Plugin
A keyboard plugin for Cordova apps.
Plugin ID/package name:
cordova-plugin-ionic-keyboard
Tested version:
2.2.0
Demo
Import the Ionic keyboard demo to your Monaca account
Enable the plugin in Monaca IDE
From the IDE menu, go to Config → Manage Cordova Plugins .
Click the Import Cordova Plugin button. Then, you can choose to import the plugin using a ZIP file or a URL/package name.
API references
This section describes some of the main functions used in our Demo. For complete API references, please refer to the repository.
show()
Show the keyboard.
Keyboard.show();
Example
//For Android
Keyboard.show();
//For iOS
inputElement.focus();
hide()
Hide the keyboard.
Keyboard.hide();
Example
Keyboard.hide();
Last updated
Was this helpful?