It has been 4 years since this question has been answered with this blog post.
Is there a standard way to create a UIImage with an image from a URL? Something like:
Below code should work,
public static async Task LoadImage(string imageUrl) { var httpClient = new HttpClient(); var contents = await httpClient.GetByteArrayAsync(imageUrl); return UIImage.LoadFromData(NSData.FromArray(contents)); }