import { IonSearchbar } from '@ionic/angular'; export class MyComponent { @ViewChild('searchbar') searchbar:IonSearchbar; /* some stuff here */ ... anyMethodName() { this.searchbar.setFocus(); } }