images_getter

A new Flutter plugin

Getting Started

Before Using this plugin, you need to add the following permissions to your AndroidManifest.xml file:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

Usage

Use the ImagesGetter class to get all images from the device. Use PermissionsHandler to check if the user has granted the required permissions.

import 'package:images_getter/images_getter.dart';

// Get all images
List<String> images = await ImagesGetter().getImages();