image_select 0.0.1 copy "image_select: ^0.0.1" to clipboard
image_select: ^0.0.1 copied to clipboard

Pick images from device gallery and camera. Alternate of image_picker

Image Selector plugin for Flutter #

pub package

A Flutter plugin for Android for picking images from the image library, and taking new pictures with the camera.

Android

Installation #

First, add image_selector as a dependency in your pubspec.yaml file.

Android #

No configuration required.

Example #

File? file;
final ImagePicker picker = ImagePicker();
// Pick an image.
  pickImage(ImageFrom source) async {
    ImageSelector imageSelector = ImageSelector();
    await imageSelector.pickImage(context: context, source: source).then((pickedFile) {
      if (pickedFile != null) {
        setState(() {
          file = pickedFile;
        });
     
      }
    });
  }
10
likes
0
points
69
downloads

Publisher

verified publisherthematrixmind.com

Weekly Downloads

Pick images from device gallery and camera. Alternate of image_picker

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, flutter, image_picker

More

Packages that depend on image_select