image_gallery 1.2.0 image_gallery: ^1.2.0 copied to clipboard
Flutter plugin to showing all the images from the storage in Android and iOS .
For help getting started with Flutter, view our online documentation.
image_gallery #
Flutter plugin to showing all the images from the storage in Android and iOS .
Usage #
Future<void> loadImageList() async {
List allImageTemp;
allImageTemp = await FlutterGallaryPlugin.getAllImages;
setState(() {
this.allImage = allImageTemp;
});
}