scanbot_image_picker 1.0.0-beta1 copy "scanbot_image_picker: ^1.0.0-beta1" to clipboard
scanbot_image_picker: ^1.0.0-beta1 copied to clipboard

outdated

Simple Image Picker with multiple selection capability.

Scanbot Image Picker for Flutter #

A simple plugin that implements a very straightforward Image Picker for iOS and Android. It uses the Flutter ImagePicker library for both iOS and Android. Also uses the native iOS library GMImagePickerWithCloudMediaDownloading for iOS versions below 14 for picking multiple images:

Installation #

dependencies
  scanbot_image_picker: ^1.0.0

Usage #

Future<List<Uri>> uris = ScanbotImagePickerFlutter.pickImagesWithUri();

Import Module #

import 'package:scanbot_image_picker/scanbot_image_picker_flutter.dart';

Picking images #

Opens the native single image picker, and returns the selected image file URIs.

Example

  var uris = await ScanbotImagePickerFlutter.pickImagesWithUri();
    for (var uri in uris) {
      print(uri.path);
    }

Contributing #

Contributions in the form of issues, pull requests and suggestions are very welcome.

Disclaimer #

This package is still in beta and should be used with that in mind.

License #

MIT

4
likes
0
points
65
downloads

Publisher

verified publisherscanbot.io

Weekly Downloads

Simple Image Picker with multiple selection capability.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, image_picker

More

Packages that depend on scanbot_image_picker