im using firebase storage to store a profile image of the users
the upload working good,
when i want to view the image as an imagesource i use this code:
public async Task<string> LoadImages()
{
var stroageImage = await new FirebaseStorage("foodymood-ba7aa.appspot.com")
.Child("Users/" + Settings.LastUserID)
.Child("ProfileImage.jpg")
.GetDownloadUrlAsync();
string imgurl = stroageImage;
return imgurl;
}
it returns the download url:
now i dont know how to use this url for viewing the image..