Last updated:
0 purchases
multi crop picker
Features #
select & crop single or multiple image from gallery.
Getting started #
you should handle photo permission before use package.
Android #
android/app/src/main/AndroidManifest.xml
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
copied to clipboard
iOS #
ios/Info.plist:
<key>NSPhotoLibraryUsageDescription</key>
<string>photo permission required.</string>
copied to clipboard
Usage #
List<Uint8List>? res = await MultiCropPicker.selectMedia(
context,
maxLength: 3,
previewHeight: MediaQuery.of(context).size.width
aspectRatio: 1);
copied to clipboard
Additional information #
At first, there were no plans to deploy, maybe so there are many shortcomings.
if anyone ever uses it, please give me feedback and ratings.
(crop featrue based on xclud/flutter_crop, gallery feture based on CaiJingLong/flutter_photo_manager)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.