Hello There,
This question has been asked multiple number of times. Using Xamarin Forms: I have an image that is updated every sec and I need to set the source to same .jpg
image.Source = new UriImageSource
{
Uri = new Uri("http://test/screen.jpg"),
CachingEnabled = false,
};
I can get the updated image but I don't want flickering at all.
Will it be better to write a custom renderer for each platform or Can anyone recommend some other control to avoid the flickering?
Thanks,
Raj