Hi guys.
I've been struggling with this issue for a while - and hopefully it is just a bug. I will give the whole navigation overview of the app, maybe I missed something:
My MainPage is built out of a NavigationPage that consists out of a MasterDetailPage that is the starting point for navigating to other tabbed pages. Thus:
NavigationPage(MasterdetailPage)=>pushAsync(TabbedPage). After the push the modalstack has the navigationpage in, and the navigation stack consists out of the masterdetailpage and the tabbedpage.
Now the issue arises when I pop - I have a button in one of the Tabbedpages that essentially does a few actions and then pops. After the pop, the nav bar(NavigationPage) and the masterdetailpage is shown correctly, but the tabs of the TabbedPage is still visible. It seems like that the shown page is constructed as follows - NavigationPage(Tabbedpage(MasterDetailPage)). But the navigationstack shows nothing about the tabbedpage.
Thanx in advance, hopefully the question is simplified and clear enough.