I'm using the Image class from Xamarin.Forms along with a binding using the UriImageSource. The problem is that while scrolling the ListView and new images are downloaded you often see the previous image from the recycled DataTemplate. How can I make it so that an empty ImageView is used and no image shows up rather than the recycled Image while the other image downloads?
I know there are platform dependent techniques I could use, but is there a way built into Xamarin.Forms so I don't have to roll in my own CustomRenderer? Seems like this is a common use case that should be handled within the Forms framework?