We are developing the android application using the Ionic framework.
When we click on the input text box we need to show next button instead of the return button. In the native Android API, we have options to show the next button. But in the Ionic frame work we don't have options to show the next button.
How can I add the next button in the soft keyboard when input text box field is selected?
refer to ionic-plugin-keyboard document, these functions only support ios platform, so they have no effect on android.
Next button won't appear because by default, ionic projects hide it.If need to show next button,Use below line inside device ready event.
The complete code is,
The right answer would be passing
false
, instead oftrue
: