flutter_rounded_loading_button
flutter_rounded_loading_button copied to clipboard
A simple implementation of an animated loading button widget for Flutter
Should have a way to set the borderRadius for differents button states. For example, before onTap, when loading and after loading. I needed set different borderRadius for the button but...
Hi I have wanted buttons of a uniform appearance which shall feature animation on presses. So I refactored (made a child from) the RoundedLoadingButton widget. It is when the child...
I have two options when executing a tap: ``` /* by type: */ await tester.tap(find.byType(RoundedLoadingButton), warnIfMissed: true); /* by key: */ await tester.tap(find.byKey(const Key("signInButton")), warnIfMissed: true); ``` But neither of...
Extended the class with a success and failed icon size property. Icon sizes were always set to the default icon size (in most cases 24.0 px) which did look bad...
Hey @chrisedg87 There's an issue if you enable `resetAfterDuration` this PR fixes that issue by checking if the widget is mounted then proceed to play the reset animations.
I made changes for my needs, I propose them here : The goal was to be able to have a outlinedbutton like style (colored text and border, transparent background) -...
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...
I would like to start the button animation and stop it after a `ModalBottom` has been shown. When the modal is shown, if I press outside the modal (basically it...