Default FlyoutMenu icon (hamburger icon) not shown in maui android after navigation, but works fine in windows
Default FlyoutMenu icon (hamburger icon) not shown in .net maui android after navigation, but works fine in windows.
Trying to navigate from MainPage to HomePage using below code
await Shell.Current.GoToAsync($"{nameof(HomePage)}");
await Navigation.PushAsync(new HomePage());
After navigation,in HomePage, hamburger icon is not shown in android, but works fine in windows. How to fix.
If I directly open HomePage without any navigation, FlyoutMenu icon is showing up in android, but issue only after navigation in android.
Tried below aswell, but didn't worked.
await Shell.Current.GoToAsync($"{nameof(Home)}");
// await Navigation.PushAsync(new Home());
Shell.Current.FlyoutBehavior = FlyoutBehavior.Flyout;
Shell.Current.FlyoutIsPresented = false;