skip to Main Content

Flutter Firebase: How to upload multiple images?

I've this Button to select images: IconButton( onPressed: () async { final results = await FilePicker.platform.pickFiles( allowMultiple: true, type: FileType.custom, allowedExtensions: ['png', 'jpg'], ); if (results == null) { ScaffoldMessenger.of(context).showSnackBar( const SnackBar( content: Text("No Image selected") ), ); return null;…

VIEW QUESTION
Back To Top
Search