Reputation: 235
Is there a way to get all the images(files) from firebase storage. It doesn't have the listall() function in flutter. If there isn't way to do this, can we get images by their metadata? I don't want to get them by their names.
Upvotes: 0
Views: 268
Reputation: 317467
Until proper file listing gets added to the API, you don't really have a way to do this from Flutter. Your best options are to:
Upvotes: 2