insta_assets_picker 3.0.0-dev.1
insta_assets_picker: ^3.0.0-dev.1 copied to clipboard
An image (and videos) picker similar with Instagram, supports multi picking, crop and aspect ratio.
Changelog #
3.0.0-dev.1 #
Features #
- Video support #50
- video processing must be handled manually
- new
requestTypeparam set toRequestType.commonby default. - new
previewThumbnailSize&skipCropOnCompleteconfig parameters. - new
InstaAssetCropTransformwidget to preview the cropped asset.
- Crop view initialization time is now much faster.
Breaking changes #
- new
InstaAssetPickerConfigconfig class to provide picker configuration #48- new
gridThumbnailSize,themeColor&selectPredicateparameters
- new
- updated
InstaAssetsExportDetailsclass, crop file are now nullable and all the crop parameters are provided in a new class calledInstaAssetsExportData.
2.3.1 #
- bump
wechat_assets_pickerto 9.1.0 - fixes the deprecated
ColorScheme.backgroundwarnings - fixes empty gallery on restorable picker first open #45
2.3.0 #
- bump
wechat_assets_pickerto 9.0.0 - request only images permission
Breaking changes #
- Migrate to Flutter 3.16, and drop supports for previous Flutter versions.
2.1.0 #
- single pick mode is now handled properly (selecting a new image replace the old one).
- fix an issue on restorable picker where the crop ratio was not saved properly.
- fix an issue where the picker was not popped after complete.
2.0.0 #
- new
actionsBuilderparameter - new examples to show how to take a picture from the picker
Breaking changes #
- Some UI components were updated to look more like instagram
1.6.0 #
Breaking changes #
- Migrate to Flutter 3.13, and drop supports for previous Flutter versions.
1.5.1 #
- set
textButtonThemein the pickerTheme to customize the confirm button appareance
1.5.0 #
- remove
isSquareDefaultCropparameter - add the possibiliy the list aspect ratios selectable, the first element will be the default value
InstaAssetPicker.pickAssets(
context,
title: 'Select images',
cropDelegate: InstaAssetCropDelegate(cropRatios: [4 / 5, 1 / 1]),
onCompleted: (cropStream) {},
),
1.4.0 #
- add
specialItemBuilderandspecialItemPositionto picker
Breaking changes #
- Migrate to Flutter 3.10, drop supports for previous Flutter versions.
1.2.2 #
- Internal migration from image_crop package to insta_assets_crop
- Fix cropped image size too small on android image_crop/#75
- New
cropDelegateparameter to specify crop options- Increased default cropped preferred size from 1024px to 1080px (like instagram)
Breaking changes #
- Renamed
InstaAssetsCropintoInstaAssetsCropData. - Moved
isSquareDefaultCropintocropDelegate.
1.2.1 #
- Fix
PlatformException(PERMISSION_REQUESTING)which causes loading error on first open on android
1.2.0 #
- Check permission before opening picker and new
onPermissionDeniedargument #6 - Expose
themeDatain InstaAssetPicker - Fix crop view not expanding on android when there is few assets
1.1.1 #
- Fix warnings with Flutter 3.7
- Improved documentation
1.1.0 #
- New
isSquareDefaultCropargument, the crop view is now initialized in 4:5 by default like instagram - Fix error in log on image crop iOS
- Fix warnings with Flutter 3.7
- Improved documentation
1.0.1+2 #
- Change screenshots paths in readme
1.0.1+1 #
- Change screenshots images in readme
1.0.0 #
- Initial release.
- Layout similar to Instagram
- Scroll animations
- Supports multi images picker, crop and aspect ratio (1 & 4/5)