TravelMonkey
TravelMonkey copied to clipboard
Improve design with Shell
Improve design with Shell.
More feedback
- I've been struggling to remove safeAreaInsets on MainPage on iOS until I find out this bug:Xamarin.Forms/issues/6499, which not fixed until latest version.
- I use
Shell.Current.GoToAsync("//picture");
to navigate page, but when I useShell.Current.Navigation.PopModalAsync();
to pop back, it crashed! MaybeGoToAsync
method not effect navigation stack.bug:Xamarin.Forms/issues/4769 - So I use
Shell.Current.GoToAsync("//main");
to pop back, but I navigate to picture page next time, this page is not recreated which means the page instance and viewmodel not disposed.