Open xuanvan229 opened 7 years ago
load image from firebase :
const loadImage = (filename) => {
return new Promise((resolve, reject) => {
const imageRef = storage.ref('images').child(filename);
var uri = imageRef.getDownloadURL();
resolve(uri);
});
}
hey guy. how i can show my image from firebase storage to my project? . It not work on android ?