I want display image in imageView, that\'s what I\'m doing: I\'m using FirebaseUI to display images from FireBase Storage.
FirebaseStorage storageDisplayImg;
In my case, I am saving the complete URL in the Firebase database and get it like this: gs: //your-id.appspot.com/images/cross.png
When I do this:
StorageReference ref = FirebaseStorage().Ref().Child(urlImag);
url = (await ref.getDownloadURL()).toString();
I am doing the following:
StorageReference ref = FirebaseStorage (gs://your-id.appspot.com/images/cross.png).ref().child ();
url = (await ref.getDownloadURL()).toString();
This step is not necessary if you already have the full URL saved in your field.