This repository was archived by the owner on Jul 6, 2020. It is now read-only.
File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ pubspec.lock
11
11
tmp /
12
12
ref /
13
13
build /
14
- coverage /
14
+ coverage /
15
+ flutter_export_environment.sh
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class TransitionToImage extends StatefulWidget {
27
27
this .repeat = ImageRepeat .noRepeat,
28
28
this .matchTextDirection = false ,
29
29
this .invertColors = false ,
30
- // this.imageFilter,
30
+ this .imageFilter,
31
31
this .placeholder: const Icon (Icons .clear),
32
32
this .duration: const Duration (milliseconds: 300 ),
33
33
this .tween,
@@ -161,7 +161,7 @@ class TransitionToImage extends StatefulWidget {
161
161
/// * [Paint.invertColors] , for the dart:ui implementation.
162
162
final bool invertColors;
163
163
164
- // final ImageFilter imageFilter;
164
+ final ImageFilter imageFilter;
165
165
166
166
/// Widget displayed while the target [image] failed to load.
167
167
final Widget placeholder;
@@ -444,7 +444,7 @@ class _TransitionToImageState extends State<TransitionToImage>
444
444
repeat: widget.repeat,
445
445
matchTextDirection: widget.matchTextDirection,
446
446
invertColors: widget.invertColors,
447
- // imageFilter: widget.imageFilter,
447
+ imageFilter: widget.imageFilter,
448
448
);
449
449
}
450
450
}
Original file line number Diff line number Diff line change 1
1
name : flutter_advanced_networkimage
2
2
description : An advanced image provider provides caching and retrying for flutter app. Now with zoomable widget and transition to image widget.
3
- version : 0.5.1
3
+ version : 0.6.0
4
4
author :
" fuyumi <[email protected] >"
5
5
homepage : https://github.com/mchome/flutter_advanced_networkimage
6
6
@@ -19,4 +19,4 @@ dev_dependencies:
19
19
20
20
environment :
21
21
sdk : " >=2.3.0 <3.0.0"
22
- flutter : " >=1.6 .0 <2.0.0"
22
+ flutter : " >=1.8 .0 <2.0.0"
You can’t perform that action at this time.
0 commit comments