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
copied to clipboard

Usage #

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

Import Module #

import 'package:scanbot_image_picker/scanbot_image_picker_flutter.dart';
copied to clipboard

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);
    }
copied to clipboard

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
78
downloads

Publisher

verified publisherscanbot.io

Weekly Downloads

2024.06.01 - 2025.04.26

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