I am trying to migrate my application from ionic v3 to v5 and facing below navigation issue. Thanks for help in advance.
While navigating from page1 to page2, page2’s, constructor(), ngOnInit() methods are executing ,also apis are fetching the data and injecting to the instance variables.
But instead of showing page2, page1 only displaying. So navigation is not happening.
I have tried angular routing,
// this.router.navigate([’/page2’], {state: {item: moreOptions }});
And also tried NavController’s navigateForward methods.
// this.navCtrl.navigateForward([’/page2’], navigationExtras);
But neither is showing page2.
In console also i did not see any errors, and ionic build also did not give any errors.
1 post - 1 participant