fancy_animated_button 0.0.14 copy "fancy_animated_button: ^0.0.14" to clipboard
fancy_animated_button: ^0.0.14 copied to clipboard

Fancy Animated Button package lets you add a different type of beautiful animated button to your Flutter app.

example/README.md

Examples #

Using fancy_animated_button to animate button in ui #

Link to Github

main.dart #


import 'package:fancy_animated_button/fancy_animated_button.dart';
import 'package:flutter/material.dart';

class FancyAnimatedButtonScreen extends StatelessWidget {
  const FancyAnimatedButtonScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Fancy Animated Button Screen'),
          backgroundColor: Colors.cyan,
        ),
        body: FancyAnimatedButton(
          onClick: () {},
        ));
  }
}
2
likes
140
points
69
downloads

Publisher

unverified uploader

Weekly Downloads

Fancy Animated Button package lets you add a different type of beautiful animated button to your Flutter app.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

dartdoc, flutter

More

Packages that depend on fancy_animated_button