Getter
Made flutter easier.
Description
A flutter plugin through which you can get audios, videos or images from the local storage.
Dependencies
Before using Getter you need first to add this line to your AndroidManifest.xml
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
and accept app to use storage.
Using
To use this plugin all you have to do just implement this code below
List<Media> data = await Getter.get(type: GetterType.audios);
change the type by what you need, you can chose between GetterType.videos
,GetterType.audios
,GetterType.images
, or GetterType.all
Issues
Please file any issues, bugs, or feature requests in the main getter repo.