File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -306,12 +306,12 @@ void main() {
306
306
));
307
307
}
308
308
309
- class TextExample extends StatefulWidget {
309
+ class AnimatedOpacityExample extends StatefulWidget {
310
310
@override
311
- _AnimatedTextExampleState createState() => _AnimatedTextExampleState ();
311
+ _AnimatedOpacityExampleState createState() => _AnimatedOpacityExampleState ();
312
312
}
313
313
314
- class _AnimatedTextExampleState extends State<TextExample >
314
+ class _AnimatedOpacityExampleState extends State<AnimatedOpacityExample >
315
315
with SingleTickerProviderStateMixin {
316
316
final _durationMs = 600;
317
317
final _curve = Curves.linear;
@@ -358,12 +358,12 @@ void main() {
358
358
));
359
359
}
360
360
361
- class TextExample extends StatefulWidget {
361
+ class StaggeredExample extends StatefulWidget {
362
362
@override
363
- _AnimatedTextExampleState createState() => _AnimatedTextExampleState ();
363
+ _AnimatedTextExampleState createState() => _StaggeredExampleState ();
364
364
}
365
365
366
- class _AnimatedTextExampleState extends State<TextExample >
366
+ class _StaggeredExampleState extends State<StaggeredExample >
367
367
with SingleTickerProviderStateMixin {
368
368
final _curve = Curves.bounceIn;
369
369
You can’t perform that action at this time.
0 commit comments