Rodiii / flutter_firebase_picture_uploader

Picture upload widget for Flutter which helps selecting and uploading one or multiple images to firebase storage.
https://pub.dev/packages/firebase_picture_uploader
MIT License
13 stars 18 forks source link

Access Link #4

Closed praveengupta0895 closed 4 years ago

praveengupta0895 commented 4 years ago

How do I get the access link of the uploaded image, I want to add the access link to database at the same time.

Rodiii commented 4 years ago

Via onPicturesChange you get a link to the StorageReference: PictureUploadWidget( onPicturesChange: profilePictureCallback, initialImages: _profilePictures, settings: PictureUploadSettings(onErrorFunction: onErrorCallback), buttonStyle: const PictureUploadButtonStyle(), buttonText: 'Upload Picture', enabled: true, ),

Please refer to the firebase storage documentation to find out how you can generate a download link afterwards.