I started using Ionic3 Lazy Loading and faced following issue:
(1) When I am using Menu, that time URL doesn’t change on navigation. Specifically,
<ion-menu [content]="content"> <ion-header> <ion-toolbar> <ion-title>Menu</ion-title> </ion-toolbar> </ion-header> <ion-content> <ion-list><button ion-item (click)="openPage(homePage)">Home </button></ion-list> </ion-content> </ion-menu>
<ion-nav id=“nav” #content [root]=“rootPage”>
when I comment just this line URL changes as it is supposed to do but Menu doesn’t open up in this scenario.
(2) While I am navigating between pages, sometimes I am getting an error as “Uncaught(in promise): invalid views to enter” and sometimes as “removeView was not found”.
Kindly provide some suggestions.