Ionic / Cordova - What determines the keyboard mapped key?

I can't find anything about this on the internet, but depending on which screen of my application is displayed when the user enters the input box, sometimes the keyboard shows the GO key and sometimes the RETURN key; those. shown in the lower right corner of the keyboard.

I'm building for both iOS and Android and ideally I would like it to always show the return key.

How can I ensure that the RETURN key is always displayed on the keyboard?

+3


source to share


1 answer


If you change the value from <input>

to <textarea>

, you get a return key (which adds line breaks in the textbox) on iOS. I have not tested Android.



+1


source







All Articles