Handler for onscreen done button press

i want to focus on the next input text when in onscreen done button is pressed.

<ion-input #baseinput name="BaseUrl" type="text" [(ngModel)]="BaseUrl_InputText" placeholder="Base url" aria-required="true" (keypress)="eventHandler($event.keyCode)">
<ion-input #baseinput name="BaseUrl" type="text" [(ngModel)]="BaseUrl_InputText" placeholder="Base url" aria-required="true" (keyup.enter)="handleEnter()">

tried both of the above but didnt work…

iam using ionic cordova plugin add cordova-plugin-ionic-keyboard plugin

help appreciable. Thanks