Hi all,
In my app i have a TabbedPage with 4 children, so far so good.
However, when i call MvxNavigationService.Navigate, it opens the other view
over the tabbed page, making the tabbedpage invisible. Wished behaviour: When i call Navigate,
it should open the other viewmodel IN the TabbedPage.
My root tab has the following attribute:
[MvxTabbedPagePresentation(TabbedPosition.Root, WrapInNavigationPage = true, NoHistory = false)]
And all the other tab pages have the following attribute:
[MvxTabbedPagePresentation(TabbedPosition.Tab, WrapInNavigationPage = true, NoHistory = false)]
And the contentpages that i try to open have the following attribute:
[MvxContentPagePresentation(Animated = true)]
Should i change the MvxContentPagePresentation to something else?