1 min readJul 22, 2019
Hi,
Every time a full round is complete, you need to reset the animation and move it forward again (so don’t go backward):
void animationStatusListener(AnimationStatus status) {
if (status == AnimationStatus.completed) {
animationController.reset();
animationController.forward();
}
}
I hope this helps :)