flutter_animated_gradient_button 0.0.1 copy "flutter_animated_gradient_button: ^0.0.1" to clipboard
flutter_animated_gradient_button: ^0.0.1 copied to clipboard

A flutter widget for animated gradient button.

flutter_animated_gradient_button #

A flutter widget for animated gradient button.

Using AnimatedGradientButton objects directly #

class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Flutter Animated Gradient Button"),
      ),
      body: Column(
        children: [
          Expanded(
            child: Container(
              width: double.infinity,
                        height: 100,
              child: const Column(
                 mainAxisSize: MainAxisSize.max,
                          mainAxisAlignment: MainAxisAlignment.center,
                children: [
                  AnimatedGradientButton(
                    btnText: "FAG_Btn",
                    color1: Colors.green,
                    color2: Colors.yellow,
                    color3: Colors.red,
                    color4: Colors.blue,
                  ),
                ],
              ),
            ),
          ),
        ],
      ),
    );
  }
}
1
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter widget for animated gradient button.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_animate

More

Packages that depend on flutter_animated_gradient_button