I have problem for Navigation in my app. I use xamarin.forms how can clean my navigation stack. No use Pop and push. Can I see my full navigation stack ?
You can access the navigation stack of your application by calling: Navigation.NavigationStack.
In my opinion the best approach is to parse the navigation stack to a list and clear it:
Navigation.NavigationStack.ToList().Clear();