16 lines
336 B
C#
16 lines
336 B
C#
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;
|
|
}
|
|
}
|