I have four pages in hierarchy, 0 -> 1 -> 2 -> 3 and I am navigating to them with this.router.navigate(..)
.
Is there a way, how to get from view (3) directly to view (1)? Calling this.location.back();
twice shows for while page (2), which I do not want to.
Can I pop it directly or navigate to page (1) while keeping (0) still on stack?
Edit: I need to be it working primary on Android/iOS.
Thanks a lot.