Hello.
I searching how to get the IonSearchbar input text when enter is pressed:
class Busqueda extends Component{
Buscar = () =>{
}
render(){
return(<IonSearchbar onIonInput={this.Buscar}></IonSearchbar>);
}
};
What can I implement? thanks in advance.