0
Good afternoon, I’m finishing a APP developed in Swift 4, with Xcode 9 and Firebase. I can already log in with Firebase, and e-mail through my App, what I need to do, which I’m not getting at all is how to set up an image gallery, with the images I record in the Firebase Storage, but this automatically, I can already upload the images to Firebase Storage. Follow what I want to do, I’m 3 weeks trying and reading various tutorials more can not.
Whereas the images are already in Firebase Storage:
- List in an image gallery, all user-saved photos in Firebase Storage;
- This list has to be thumbnails of the images, and when clicking they are in the normal size that are saved.
Note: There is this library that assembles the image gallery, the way I want, but I do not know how to use and nor how I would load the images automatically from Fisebase ( library:https://github.com/mwaterfall/MWPhotoBrowser) Could you help me please.
Thank you
Firebase Storage doesn’t have a way to show all the images that are stored there. What you have to do is save the list of images in your Database. This makes it easier to list them
– Rosário Pereira Fernandes