A keyboard plugin for Cordova apps.
Repository: https://github.com/ionic-team/cordova-plugin-ionic-keyboardarrow-up-right
Plugin ID/package name: cordova-plugin-ionic-keyboard
cordova-plugin-ionic-keyboard
Tested version: 2.2.0
2.2.0
To check the third party Cordova plugins, you need to create a custom build debugger (Android version or iOS version).
Import the Ionic keyboard demo to your Monaca accountarrow-up-right
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.
This section describes some of the main functions used in our Demoarrow-up-right. For complete API references, please refer to the repositoryarrow-up-right.
Show the keyboard.
Keyboard.show() is not supported in the iOS due to the platform limitations. Therefore, please use focus() of the input element instead.
Keyboard.show()
focus()
input
Example
Hide the keyboard.
Last updated 2 years ago
Keyboard.show();
//For Android Keyboard.show(); //For iOS inputElement.focus();
Keyboard.hide();