Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 537 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 537 Bytes

For help getting started with Flutter, view our online documentation.

Pub

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;
    });
  }