flutter_countdown_timer icon indicating copy to clipboard operation
flutter_countdown_timer copied to clipboard

How to set animation status?

Open recepbuyukfirat opened this issue 7 years ago • 1 comments

hi, thx for this shared. i want make change this programming. how to add to this fonction this code addStatuListener ?

recepbuyukfirat avatar Sep 10 '18 14:09 recepbuyukfirat

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){}
    });

josancamon19 avatar Feb 24 '19 03:02 josancamon19