Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xia-weiyang/assets_picker_ot

Quickly select resources from the gallery
https://github.com/xia-weiyang/assets_picker_ot

dart flutter picker

Last synced: 27 days ago
JSON representation

Quickly select resources from the gallery

Awesome Lists containing this project

README

        

# assets_picker_ot

Quickly select resources from the gallery.

![show](https://xia-weiyang.github.io/gif/assets_picker_ot.gif)

``` dart
Navigator.push(context, MaterialPageRoute(builder: (_con) {
return PickerPage(
maxSelected: 3,
overMaxSelected: (context) {
debugPrint('Select up to 3 images');
},
);
})).then((value) {
if (value is List) {
// todo selected success
}
});
)
```

### Thanks
[https://github.com/fluttercandies/flutter_photo_manager](https://github.com/fluttercandies/flutter_photo_manager)