Xamarin - Bind ActivityIndicator visibility to async Task finished
问题 I'm loading images async into my Listview according to this answer: Xamarin - Asynchronous data binding I'd like to display a ActivityIndicator while the page is loading the data from the web, but cannot figure out how to bind the visibility it to the task, so that it disappears when the task is done loading.. I've created a isLoading bool variable in my ViewModel. I tried it this way in my ViewModel, but It's not working: isLoading = true; GetImagesCommand = new Command(async () => await