Open
Description
This is a feature request related to the new firebase-ui-storage library available since release 0.6.0:
I’m planning on using the provided integration with Glide to (efficiently) show images stored in Firebase Storage within my app. In my app I have the following workflow that is more or less the same as the sample:
- User selects image from the camera or gallery (using intents)
- The URI returned is used to initiate the Firebase Storage upload
- Wait period (progress dialog), once the onSuccess is triggered:
- Change Firebase database, set: hasImage = true
- The image is loaded into the relevant imageviews using the Glide call (with FirebaseImageLoader)
As you can see this is not optimal: step 3 could be omitted by directly inserting the selected image into the local cache. My question: is this currently possible or is this type of functionality foreseen for a future release?