Hello all,
i'm currently facing a problem implementing a certain navigation stack in a correct way using FreshMvvm:
I have setup a tabbed navigation container containing some pages.
One of the page shows a list of subpages to navigate to. These subpages themselves should be defined in simple navigation way as they contain hierarchical subpages to dive in an pop back. So far i tried to implement this scenario in two ways:
- When i simply do a CoreMethods.PushPageModel from the itemlist, i could switch to the selected subpage, but, of course, the tab registers are still present as i'm still in the same navigation stack.
- I could switch to the new navigation stack by CoreMethods.PushPageModelWithNewNavigation(). This works, i'm landing on the desired page BUT, as it is a new navigation stack, i don't have a "Back" Arrow in toolbar to go back to the tabregister page - Which is a deadlock on iOS as there's also no hardware "Back" button.
So is there a possibility in FreshMvvm to directly push to a simple navigation container out of a tabbed navigation page WITH having a possibility to pop back by using "Back" Arrow from Toolbar?