image_picker_platform_interface 2.4.1 image_picker_platform_interface: ^2.4.1 copied to clipboard
A common platform interface for the image_picker plugin.
2.4.1 #
- Reverts the changes from 2.4.0, which was a breaking change that was incorrectly marked as a non-breaking change.
2.4.0 #
- Add
forceFullMetadata
option topickImage
.- To keep this non-breaking
forceFullMetadata
defaults totrue
, so the plugin tries to get the full image metadata which may require extra permission requests on certain platforms. - If
forceFullMetadata
is set tofalse
, the plugin fetches the image in a way that reduces permission requests from the platform (e.g on iOS the plugin won’t ask for theNSPhotoLibraryUsageDescription
permission).
- To keep this non-breaking
2.3.0 #
- Updated
LostDataResponse
to include afiles
property, in case more than one file was recovered.
2.2.0 #
- Added new methods that return
XFile
(frompackage:cross_file
)getImage
(will deprecatepickImage
)getVideo
(will deprecatepickVideo
)getMultiImage
(will deprecatepickMultiImage
)
PickedFile
will also be marked as deprecated in an upcoming release.
2.1.0 #
- Add
pickMultiImage
method.
2.0.1 #
- Update platform_plugin_interface version requirement.
2.0.0 #
- Migrate to null safety.
- Breaking Changes:
- Removed the deprecated methods:
ImagePickerPlatform.retrieveLostDataAsDartIoFile
,ImagePickerPlatform.pickImagePath
andImagePickerPlatform.pickVideoPath
. - Removed deprecated class:
LostDataResponse
.
- Removed the deprecated methods:
1.1.6 #
- Fix test asset file location.
1.1.5 #
- Update Flutter SDK constraint.
1.1.4 #
- Pass
Uri
s topackage:http
methods, instead of strings, in preparation for a major version update inhttp
.
1.1.3 #
- Update documentation of
pickImage()
regarding HEIC images.
1.1.2 #
- Update documentation of
pickImage()
regarding compression support for specific image types.
1.1.1 #
- Update documentation of getImage() about Android's disability to preference front/rear camera.
1.1.0 #
- Introduce PickedFile type for the new API.
1.0.1 #
- Update lower bound of dart dependency to 2.1.0.
1.0.0 #
- Initial release.