File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- ## [ 3.0.0-nullsafety] -2020-01-02
1
+ ## [ 3.0.0] - 2020-03-27
2
+ * Migrate to null safety
3
+ * Fix "Cannot clone a disposed image" error
4
+ * Update dependencies.
5
+
6
+ ## [ 3.0.0-nullsafety] - 2020-01-02
2
7
* Migrate to null safety
3
8
4
9
## [ 2.5.0] - 2020-12-22
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: cached_network_image
2
2
description : Flutter library to load and cache network images.
3
3
Can also be used with placeholder and error widgets.
4
4
homepage : https://github.com/Baseflow/flutter_cached_network_image
5
- version : 3.0.0-nullsafety
5
+ version : 3.0.0
6
6
7
7
dependencies :
8
8
flutter :
Original file line number Diff line number Diff line change @@ -735,8 +735,7 @@ void main() {
735
735
);
736
736
737
737
var onImageCount = 0 ;
738
- final activeListener =
739
- (ImageInfo image, bool synchronousCall) {
738
+ final activeListener = (ImageInfo image, bool synchronousCall) {
740
739
onImageCount += 1 ;
741
740
};
742
741
var lastListenerDropped = false ;
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ class TestRenderingFlutterBinding extends BindingBase
34
34
TestRenderingFlutterBinding ({this .onErrors}) {
35
35
FlutterError .onError = (FlutterErrorDetails details) {
36
36
FlutterError .dumpErrorToConsole (details);
37
- Zone .current.parent! . handleUncaughtError (details.exception,
38
- details.stack! );
37
+ Zone .current.parent!
38
+ . handleUncaughtError (details.exception, details.stack! );
39
39
};
40
40
}
41
41
You can’t perform that action at this time.
0 commit comments