While navigating back multiple pages, ie Shell.Current.GoToAsync("../.."), if I change the Shell Tab Bar visiblity, the tab bar is not visible.
- Run app on iOS or Android
- Notice the tab bar
- Select "Open Example" button
- Notice the tab bar disappeared
- Select Page1's "Open Example" button
- Select "Working - Go Back" button
- Notice the tab bar appeared
- Repeat steps 3-5.
- Select "Broken - Go Back" button
- Notice the tab bar did not appear.
Navigate by a single page only
await Shell.Current.GoToAsync("..");
await Shell.Current.GoToAsync("..");Instead of
await Shell.Current.GoToAsync("../..");