Hi I have this hierarchy
App (RootFrame)
And I want to handle Back button correctly. Navigating between pages in inner frames is ok, but when I go for example from "List Page with entities 2" to "Detail page for entity 2" and then back, MainShell i recreated and forgets the InnerFrames BackStack and opened Page(should be "List Page with entities 2")
Is there any elegant way to handle this? for example save InnerFrames history and current page when navigatedFrom at MainShell happens?
I found what I needed. There are SetNavigationState(string) and GetNavigationState() methods on Frame object. Thanks anyway