animbutton 1.0.2 copy "animbutton: ^1.0.2" to clipboard
animbutton: ^1.0.2 copied to clipboard

Flutter animated button package: Elegant UI interactions with smooth animations, customizable styles, and seamless integration across the platforms.

Flutter animated button package: Elegant UI interactions with smooth animations, customizable styles, and seamless integration across the platforms.

demo

Features #

  • Gives visual feedbacks on tap

  • Higly customizable in any way

    • Height
    • Width
    • Color
    • Animation
    • TextStyle
    • BorderRadius
  • Various Animation on tap

Getting started #

Add the latest version of package to your pubspec.yaml (and run dart pub get):

dependencies:
  animbutton: ^latest_version

Usage #

class Example extends StatelessWidget {
  const Example({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: AnimButton(
          buttonColor: Colors.black,
          height: 45.0,
          width: 120.0,
          label: 'Anim Button',
          onPressed: () {
            debugPrint("Button Tapped");
          }),
    );
  }
}
2
likes
150
pub points
0%
popularity

Publisher

unverified uploader

Flutter animated button package: Elegant UI interactions with smooth animations, customizable styles, and seamless integration across the platforms.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on animbutton