iOS Keyboard Done Button

Hello,

I was under the impression that when the user click the done keyboard button that it would fire the OnSubmit event. When testing on device I am not receiving this event. In my project I have a few InputFields and I would like to know when the user clicks the done button so that I can deactivate the current InputField and activate the next one. Any ideas of what to do ?

Thanks

You are right , the iOS keyboard “Done” button won’t force OnSubmit(). I believe that is a bug.

It will call the InputField’s “End Edit” event though. So you can create a function called OnEndEdit() and from the Input Field inspector, have it call that function.

1 Like