I have an AcitivtyIndicator that I would like to activate in a method that has other longer operations inside it. I would like the activityIndicator to be displayed and then the next code to be read afterwards
private void AvviaRicerca_Clicked(object sender, EventArgs e)
{
AcitivtyIndicator.IsVisible = true;
//othe code
}
Now it is only displayed after it has done all the operations within that method