image_selector_widget 0.0.2 copy "image_selector_widget: ^0.0.2" to clipboard
image_selector_widget: ^0.0.2 copied to clipboard

This package provides an amazing multiple image selector widget

multiple image selector #

Introduction #

This project provides an amaizing user interface for selecting multiple image both from the gallery or the camera.

Example #

import 'package:image/image_selector.dart';

class _HomeState extends State<Home> {
  List<File> imageList = List.of([]);

  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.blue,
      child: Center(
          child: SizedBox(
              height: 150.h,
              child: ImageSelector(
                onError: (e) {
                  // Show an alertdialog with the error
                },
                imageList: imageList,
              ))),
    );
  }
}

Screenshot Screenshot Screenshot

Getting started #

Run this command for installation

flutter pub add image_selector_widget
dependencies:
  image_selector_widget: ^0.0.1
4
likes
80
pub points
0%
popularity

Publisher

unverified uploader

This package provides an amazing multiple image selector widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

dotted_border, flutter, image_gallery_saver, image_picker

More

Packages that depend on image_selector_widget