spinner_button

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

spinner button

Progress Button #

A simple button that gives you the possibility to
transform into a circular one and shows a progress indicator.

How to use #
Container(
width: 200,
height: 60,
child: ProgressButton(
borderRadius: BorderRadius.all(Radius.circular(8)),
strokeWidth: 2,
child: Text(
"Sample",
style: TextStyle(
color: Colors.white,
fontSize: 24,
),
),
onPressed: (AnimationController controller) {
if (controller.isCompleted) {
controller.reverse();
} else {
controller.forward();
}
},
),
),
copied to clipboard
Please check the sample folder for a simple implementation.
Changelog #
Please see the Changelog page to know what's recently changed.
Contributions #
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a new feature, please send a pull request.
License #
This project is licensed under the MIT License - see the LICENSE.md file for details

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.