shareFiles([path], text: ‘Image Shared’); // here path is the location of file in your mobile directory.
Read moreHow do I use share<UNK>Plus flutter?
Flutter – Share Plus Library
Read moreWhat is file picker used for?
The Google picker is a “File Open” dialog for the information stored on Google servers . You can use the Google Picker API to enable users to open or upload Google Drive files. Note: To enable users to open Drive files from a mobile app, refer to Google Workspace APIs for Android or Google Workspace APIs for iOS.
Read moreHow do I use file picker flutter?
Let’s Get Started with implementing file_picker in flutter app
Read moreHow do I get all the files in a directory Dart?
How to list the contents of a directory in Dart. final dir = Directory(‘path/to/directory’); final List<FileSystemEntity> entities = await dir. list(). toList();
Read moreHow do you save data on flutter?
Learn how to store data locally and manage nested data models in Flutter
Read more