Skip to content

Commit 4bd6c6b

Browse files
[image_picker] Allows 3.0 web implementation (flutter#4648)
Adds compatibility with `image_picker_for_web` 3.0, which was a breaking change only because it dropped implementations of deprecated platform interface methods that this package no longer uses. Picks up the fix for flutter#92176
1 parent 11bb9ec commit 4bd6c6b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/image_picker/image_picker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.2
2+
3+
* Adds compatibility with `image_picker_for_web` 3.0.
4+
15
## 1.0.1
26

37
* Rolls platform implementations to ensure that `pickMedia` and

packages/image_picker/image_picker/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for selecting images from the Android and iOS image
33
library, and taking new pictures with the camera.
44
repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
6-
version: 1.0.1
6+
version: 1.0.2
77

88
environment:
99
sdk: ">=2.18.0 <4.0.0"
@@ -29,7 +29,7 @@ dependencies:
2929
flutter:
3030
sdk: flutter
3131
image_picker_android: ^0.8.7
32-
image_picker_for_web: ^2.2.0
32+
image_picker_for_web: ">=2.2.0 <4.0.0"
3333
image_picker_ios: ^0.8.8
3434
image_picker_linux: ^0.2.1
3535
image_picker_macos: ^0.2.1

0 commit comments

Comments
 (0)