I’m working on an story view application in which I’ve created a "stories" folder in firebase storage under which there is a folder with the "userID" and inside userID, I’ve stored all the stories of the respective user.
Now, I’m trying to fetch all those stories of the respective user. Here, is my function which I used to fetch the images but it gives me error "Image failed to load"
String storyUrl = " ";
void fetchstory() async {
final ref = FirebaseStorage.instance.ref().child('stories');
ref.listAll().then((value1) {
value1.items.forEach((folder) {
folder.listAll().then((value2) {
value2.items.forEach((stories) {
stories.getDownloadURL().then((value) {
storyUrl = value;
});
});
});
});
});
}
2
Answers
Try to add await and setState like this
Make sure to change stories data type to list because you wanna fetch all data not one story, like this
The value should be a list of string since you are looping it