Skip to content

Instantly share code, notes, and snippets.

@chrisriesgo
Created June 19, 2016 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisriesgo/c0a37078cf63d8396011084cd47271de to your computer and use it in GitHub Desktop.
Save chrisriesgo/c0a37078cf63d8396011084cd47271de to your computer and use it in GitHub Desktop.
Remove all System.Timer references
// ...
async Task UpdateSelectedItem ()
{
await Task.Delay(300);
SelectedItem = SelectedIndex > -1 ? Children[SelectedIndex].BindingContext : null;
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment