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 8f70fd0 commit 14c143dCopy full SHA for 14c143d
example/lib/main.dart
@@ -76,9 +76,9 @@ class AnimatorSetState extends State<AnimatorSetActivity> {
76
SliverList(
77
delegate: SliverChildBuilderDelegate(
78
(BuildContext context, int index) {
79
- return box[index];
+ return curveBox[index];
80
},
81
- childCount: box.length,
+ childCount: curveBox.length,
82
),
83
84
],
@@ -88,7 +88,7 @@ class AnimatorSetState extends State<AnimatorSetActivity> {
88
}
89
90
91
-var box = [
+var curveBox = [
92
CurveBox(curve: Curves.linear, str: "linear"),
93
CurveBox(curve: Curves.bounceIn, str: "bounceIn"),
94
CurveBox(curve: Curves.bounceInOut, str: "bounceInOut"),
0 commit comments