i am creating hybrid app. i tried to navigate login page to home page but problem i faced is that my home page is overlapping on login page means that when my home page was opened and in back my login page display.
for navigation i used
this.navController.push(HomePage);
homepage.html
<ion-content padding>
<ion-list>
<ion-item *ngFor="let item of pages" (click)="itemSelected(item.title)">
<ion-avatar item-left>
<img src="{{item.image}}">
</ion-avatar>
<h2>{{item.title}}</h2>
</ion-item>
</ion-list>
</ion-content>
*ngIf="isLoggedIn"in your html code to hide the login page, and show the homepage, vice-versa. - John