I am using the code below the Akavache to cache images.
Return is an IBitmap, how can I convert this IBitmap to an ImageSource?
var url = "https://ashdbhjas/image.png";
ImageSource imageSrc = await BlobCache.LocalMachine.LoadImageFromUrl(url); // ???
Try this:
Basically you are saving the IBitmap into a MemoryStream then using this to create your ImageSource object of your Image.
Hope this helps!