We are busy developing some new functionality for an app (only on Windows Phone at this stage).
In our app we have a TabbedPage set as the MainPage of the app, with multiple views as children.
One of these views contains a list of actions, and each of these actions pushes its own view onto the stack.
Within one of these actions we do some platform specific work via the (dependency service). Part of this work pushes another view onto the NavigationStack. When this page gets popped, it does not show the page that pushed it, but rather shows the current view of the MainPage, even though the correct page is still in the NavigationStack.
Why is this the case? How can I set focus back to the correct page (still on top of the navigation stack)?
Any help would be appreciated.