Skip to content

Commit 16efda9

Browse files
committed
code examples typos
1 parent bb7f2d4 commit 16efda9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/examples.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,12 @@ void main() {
306306
));
307307
}
308308
309-
class TextExample extends StatefulWidget {
309+
class AnimatedOpacityExample extends StatefulWidget {
310310
@override
311-
_AnimatedTextExampleState createState() => _AnimatedTextExampleState();
311+
_AnimatedOpacityExampleState createState() => _AnimatedOpacityExampleState();
312312
}
313313
314-
class _AnimatedTextExampleState extends State<TextExample>
314+
class _AnimatedOpacityExampleState extends State<AnimatedOpacityExample>
315315
with SingleTickerProviderStateMixin {
316316
final _durationMs = 600;
317317
final _curve = Curves.linear;
@@ -358,12 +358,12 @@ void main() {
358358
));
359359
}
360360
361-
class TextExample extends StatefulWidget {
361+
class StaggeredExample extends StatefulWidget {
362362
@override
363-
_AnimatedTextExampleState createState() => _AnimatedTextExampleState();
363+
_AnimatedTextExampleState createState() => _StaggeredExampleState();
364364
}
365365
366-
class _AnimatedTextExampleState extends State<TextExample>
366+
class _StaggeredExampleState extends State<StaggeredExample>
367367
with SingleTickerProviderStateMixin {
368368
final _curve = Curves.bounceIn;
369369

0 commit comments

Comments
 (0)