I have a problem with displaying an input field. When the user clicks on the field to enter the value, the keyboard appears. the portion of the page is partially covered and the input field is no longer visible. what is the best solution to apply?
Catch ionFocus is the best practice to solve my issue?
<ion-input (ionFocus)="adjustLayout($event)"></ion-input>
adjustLayout(event) {
// Codice per spostare il contenuto in modo che il campo di testo sia visibile
}
Thanks
L
2 posts - 2 participants