Learn .NET MAUI with step-by-step C# tutorials and ready-to-use code samples MVVM, SQLite, REST APIs, navigation, notifications and more for cross-platform apps.
bool AllowTap = true; private void Button_Clicked(object sender, EventArgs e) { if (AllowTap) { AllowTap = false; //Write logic here await Task.Delay(1000); AllowTap = true; } }