handle_button
HandleButton is a Flutter package with a simple implementation of an animated loading button, complete with success and error animations.

Installation
Add this to your pubspec.yaml:
dependencies:
handle_button: ^1.0.0
Usage
Import
import 'package:handle_button/handle_button.dart';
Simple Implementation
final HandleButtonController _btnController = HandleButtonController();
void _doSomething() async {
Timer(Duration(seconds: 3), () {
_btnController.success();
});
}
HandleButton(
child: Text('Tap me!', style: TextStyle(color: Colors.white)),
controller: _btnController,
onPressed: _doSomething,
)
The Rounded Loading Button has many configurable properties, including:
duration- The duration of the button animationloaderSize- The size of the CircularProgressIndicatoranimateOnTap- Whether to trigger the loading animation on the tap eventresetAfterDuration- Reset the animation after specified duration, defaults to 15 secondserrorColor- The color of the button when it is in the error statesuccessColor- The color of the button when it is in the success statesuccessIcon- The icon for the success statefailedIcon- The icon for the failed stateloadingWidget- The widget for the loading state
Contributions
All contributions are welcome!