Answers for "check if animation complete in flutter"

0

check if animation complete in flutter

animation.addStatusListener((status) {
   if (status == AnimationStatus.completed) {
      // do your logic
   }
});
Posted by: Guest on May-25-2021

Code answers related to "check if animation complete in flutter"

Browse Popular Code Answers by Language