Why are images not showing up after retrieving them from the Firebase database?

The reason for the images not appearing after retrieving them from the Firebase database is that the images only appear on the device from which the image was posted, and when the device is changed, the image does not appear.

Show your firebase structure how you stored them and show your blocks how you are trying to load it.

Yes!

You have just stored the local image path to firebase which can be shown in same device only that is also if that image is exist on the device. It will not show on other devices as it doesnt exist on them.

You need to upload the image on online storage like firebase storage, Google drive or cloudinary and get the image url and store it in firebase then it will show on all devices.

1 Like

Are there other ways to process and store images?

Is it possible to delete the image from Firebase Storage after retrieving and storing it in Firebase Database?

Yes you can. But if you delete the file it will no longer be loaded, if you are thinking storing in firebase database there is no need of firebase storage. Firebase database is not a storage for storing media, it is a database which stores text data.

Is it possible to link the images in Firebase Storage with the storage in Firebase Data so that when the ad is deleted, the images are deleted from Firebase Storage, and how can I create a timer using the ad date so that the ad is deleted dynamically, for example, after 30 days from the ad’s release? Regards.