I'm currently developing on UWP and I got a weird navigation behavior.
I navigate successfully to that page: MasterDetailView/NavigationPage/Dictionary/Entry, but when I press back I go back to Dictionary but I don't have my MasterDetailView and the navigation page.
This is how I navigate to EntryDetail
await _navigationService.NavigateAsync(new Uri("{The link}/MasterDetailView", UriKind.Absolute) + "/NavigationPage/Dictionary/EntryDetail", param);
And then I just click on the back button from the uwp interface.
What's wrong here ?