I have an issue with “history back” when navigate to same page
When I navigate to the same component (with nativescript angular), I can intercept the params change but when i tap the Android Back button, it doesn't return back to previous page. constructor(private pageRoute: PageRoute) { super(); this.pageRoute.activatedRoute .switchMap(activatedRoute => activatedRoute.params) .forEach((params) => { this._groupId = params['id']; this.load(); // this method reload the list in the page. }); } I navigate in the same page "group/:id" with different url "home" -> "group/1" -> "group/2" -> "group/3". If I click Android Back Button in "group/3", I return to