File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
packages/ios_platform_images Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.0+9
2
+
3
+ * Ignores the warning for the upcoming deprecation of ` DecoderCallback ` .
4
+
1
5
## 0.2.0+8
2
6
3
7
* Ignores the warning for the upcoming deprecation of ` ImageProvider.load ` in the correct line.
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ class _FutureMemoryImage extends ImageProvider<_FutureMemoryImage> {
66
66
/// See [ImageProvider.load] .
67
67
// TODO(jmagman): Implement the new API once it lands, https://github.com/flutter/flutter/issues/103556
68
68
@override
69
+ // ignore: deprecated_member_use
69
70
ImageStreamCompleter load (_FutureMemoryImage key, DecoderCallback decode) {
70
71
return _FutureImageStreamCompleter (
71
72
codec: _loadAsync (key, decode),
@@ -75,6 +76,7 @@ class _FutureMemoryImage extends ImageProvider<_FutureMemoryImage> {
75
76
76
77
Future <ui.Codec > _loadAsync (
77
78
_FutureMemoryImage key,
79
+ // ignore: deprecated_member_use
78
80
DecoderCallback decode,
79
81
) async {
80
82
assert (key == this );
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: ios_platform_images
2
2
description : A plugin to share images between Flutter and iOS in add-to-app setups.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/ios_platform_images
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+ios_platform_images%22
5
- version : 0.2.0+8
5
+ version : 0.2.0+9
6
6
7
7
environment :
8
8
sdk : " >=2.14.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments