Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xia-weiyang/assets_picker_ot
- Owner: xia-weiyang
- License: gpl-2.0
- Created: 2022-01-02T04:13:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-11T13:38:28.000Z (4 months ago)
- Last Synced: 2024-07-11T15:42:08.017Z (4 months ago)
- Topics: dart, flutter, picker
- Language: Dart
- Homepage: https://pub.dev/packages/assets_picker_ot
- Size: 160 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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)