In my AppShell.xaml.cs page I can easily access the FlyoutItems of the Shell:
accountFlyoutItem.IsEnabled = false;
accountFlyoutItem.IsVisible = false;
However, how do you access these from another page? The only way I found was to try to iterate through the "Shell.Current.FlyoutItems". Is there a simpler way I'm missing?