We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54a63f1 commit 90c3cebCopy full SHA for 90c3ceb
example/lib/parallel_animation_logo.dart
@@ -4,7 +4,7 @@ class AnimatedLogo1 extends AnimatedWidget {
4
// The Tweens are static because they don't change.
5
static final _opacityTween = new Tween<double>(begin: 0.1, end: 1.0);
6
static final _sizeTween = new InterpolationTween(inputRange: [0,0.2,1], outputRange: [0,250,300]);
7
- static final _colorTween = ColorInterpolation(inputRange: [0,0.2,1],outputRange: [Colors.white,Colors.green,Colors.red]);
+ static final _colorTween = ColorInterpolationTween(inputRange: [0,0.2,1],outputRange: [Colors.white,Colors.green,Colors.red]);
8
9
AnimatedLogo1({Key key, Animation<double> animation})
10
: super(key: key, listenable: animation);
0 commit comments