@defeattroy wrote:
There are page A and B. Page A has a list who navigates to B. B has some input fields.
If I edit the fields and USE hardware back button(Android) to back to Page A. The title
and the list overlap.html file
<ion-header> <ion-navbar > <ion-title> The Title </ion-title> </ion-navbar> </ion-header> <ion-content style="background-color:#f2f2f2;"> <ion-list no-lines > <ion-item *ngFor="let t of shortTrain"> <h2 >{{t.name}}</h2> <p style="font-size:12px;">{{t.subtitle}}</p> <p style="font-size:12px;"> <button ion-button color="secondary" round item-end (click)="toSignUpInfo(t.id,t.name,t.trainTime,t.deposit)">Click Me</button> </p> </ion-item> </ion-list> </ion-content>``` 
Posts: 1
Participants: 1