flutter_rounded_loading_button
flutter_rounded_loading_button copied to clipboard
Animation lags when reset
Timer(Duration(seconds: 3), () async { _btnController.success(); await Future.delayed(Duration(seconds: 1)); _btnController.reset(); }
When the animation resets, it lags. It will stop for a moment and then continue. When I play it in slow motion it seems that the button will take the size of the text inside it and then continue to grow. That is why you see the lag
Did u manage to fix it?
I'm struggling to reproduce this one. Ran the example with the above code and I'm not seeing a lag. Could this possibly just be a simulator issue?
Here’s a gif of the issue. Same code. Running iOS 13.5
See how the button pauses for a split second when it reaches the text widget?
Did you manage to reproduce it?
I'm having the same issue. Btw, thank you for the great library!
I am seeing the same bug as well. It's easier to reproduce if you make a button with a longer label (e.g. "Login with Google").

same issue
You can see it even in the repos Readme in the gif. I think that this was the author's intention, even though it doesn't look nice.