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 47928b2 commit 559e1ffCopy full SHA for 559e1ff
example/lib/main.dart
@@ -46,11 +46,13 @@ class AnimatedCell extends StatelessWidget {
46
key: key,
47
autoPlay: autoPlay,
48
curve: curve,
49
- onTransitionEnd: (){
+ onAnimationEnd: (){
50
Future.delayed(Duration(milliseconds: 200),(){
51
if(autoPlay == false)key.currentState.reset();
52
});
53
},
54
+ iterationCount: 1,
55
+ direction: AnimatedDirection.normal,
56
child: Container(
57
margin: const EdgeInsets.symmetric(vertical: 8, horizontal: 15),
58
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 15),
0 commit comments