@@ -56,8 +56,8 @@ class Matrix4Tween extends Tween<Matrix4> {
56
56
57
57
/// An abstract widget for building widgets that gradually change their
58
58
/// values over a period of time.
59
- abstract class AnimatedWidgetBase extends StatefulWidget {
60
- AnimatedWidgetBase ({
59
+ abstract class ImplicitlyAnimatedWidget extends StatefulWidget {
60
+ ImplicitlyAnimatedWidget ({
61
61
Key key,
62
62
this .curve: Curves .linear,
63
63
this .duration
@@ -73,7 +73,7 @@ abstract class AnimatedWidgetBase extends StatefulWidget {
73
73
final Duration duration;
74
74
75
75
@override
76
- AnimatedWidgetBaseState <AnimatedWidgetBase > createState ();
76
+ AnimatedWidgetBaseState <ImplicitlyAnimatedWidget > createState ();
77
77
78
78
@override
79
79
void debugFillDescription (List <String > description) {
@@ -89,7 +89,7 @@ typedef Tween<T> TweenConstructor<T>(T targetValue);
89
89
typedef Tween <T > TweenVisitor <T >(Tween <T > tween, T targetValue, TweenConstructor <T > constructor);
90
90
91
91
/// A base class for widgets with implicit animations.
92
- abstract class AnimatedWidgetBaseState <T extends AnimatedWidgetBase > extends State <T > {
92
+ abstract class AnimatedWidgetBaseState <T extends ImplicitlyAnimatedWidget > extends State <T > {
93
93
AnimationController _controller;
94
94
95
95
/// The animation driving this widget's implicit animations.
@@ -191,7 +191,7 @@ abstract class AnimatedWidgetBaseState<T extends AnimatedWidgetBase> extends Sta
191
191
/// different parameters to [Container] . For more complex animations, you'll
192
192
/// likely want to use a subclass of [Transition] or use an
193
193
/// [AnimationController] yourself.
194
- class AnimatedContainer extends AnimatedWidgetBase {
194
+ class AnimatedContainer extends ImplicitlyAnimatedWidget {
195
195
AnimatedContainer ({
196
196
Key key,
197
197
this .child,
@@ -327,7 +327,7 @@ class _AnimatedContainerState extends AnimatedWidgetBaseState<AnimatedContainer>
327
327
/// position over a given duration whenever the given position changes.
328
328
///
329
329
/// Only works if it's the child of a [Stack] .
330
- class AnimatedPositioned extends AnimatedWidgetBase {
330
+ class AnimatedPositioned extends ImplicitlyAnimatedWidget {
331
331
AnimatedPositioned ({
332
332
Key key,
333
333
this .child,
0 commit comments