flutter_countdown_timer
flutter_countdown_timer copied to clipboard
How to set animation status?
hi, thx for this shared. i want make change this programming. how to add to this fonction this code addStatuListener ?
Hi, sorry for the late reply, you can add something like that:
animationController = AnimationController(vsync: this, duration: Duration(seconds: 5));
animationController.addStatusListener((status){
if(status == AnimationStatus.completed){}
});