iOS 'GO' button in @ionic/react form

Hi all,

I’m building a form in a PWA which consists of one element - an IonInput.
I wish to use the native iOS keyboard to submit this form.

I have experimented with placing the IonInput element in a form tag along with input type=submit, but no joy so far.

Code looks something like this :

			<IonRow>
				<IonCol>
					<form>
					<IonInput onIonChange={e => handler(timer_id, e)} placeholder="Waiting for player."></IonInput>
					<input type="submit"></input>
					</form>
				</IonCol>
			</IonRow>

Cheers !

Edit : Some form elements were being parsed out, added code sample.

can you show your work?

Hi Aaron, thanks for replying. I added a snippet to the original post.

use action for form like

< form action="." >