Android Keyboard shows open instead of ok

Hey there I am using a regular ion-input field for some of my Pages. But whenever I enter any of this fields my android keyboard shows me the open Button instead of Ok or Enter.

Page.html

<ion-content padding>
  <ion-list>

    <ion-item>
      <ion-label floating>Title</ion-label>
      <ion-input [(ngModel)]="newCard.title"></ion-input>
    </ion-item>

    <ion-item>
      <ion-label floating>Beschreibung</ion-label>
      <ion-input [(ngModel)]="newCard.description"></ion-input>
    </ion-item>

    <ion-item>
      <ion-label floating>link</ion-label>
      <ion-input [(ngModel)]="newCard.link" name="link"></ion-input>
    </ion-item>

  </ion-list>
  <button ion-button id="saveButton" (click)="save()">
    Save
  </button>
</ion-content>

Is there a way to handle this properly?

Best Regards

I found the solution by my self it is necessary to but it in a form tag in order to get the correct keyboard layout.

API-Docu of ionic forms:

This topic is closed