namespace FieldLogger.Views.Controls; public partial class FloatingMenuButton : ContentView { public FloatingMenuButton() { InitializeComponent(); } private void OnMenuClicked(object? sender, EventArgs e) { if (Shell.Current is not null) Shell.Current.FlyoutIsPresented = true; } }