I am navigating to other page after button onClick(). I want to avoid situation with double click. Now when I click button more than once, for example twice, before the next page is shown with the result, there are multiple instances of the next page created.
private async void Button_Clicked(object sender, EventArgs e)
{
var newPage = new NewPage();
await Navigation.PushAsync(newPage);
}
What should i need to be added in my code?