fancy_animated_button 0.0.2
fancy_animated_button: ^0.0.2 copied to clipboard
Fancy Animation Button
Fancy Animated Button #
Fancy Animated Button package lets you add a beautiful animated button to your Flutter app.
Installation #
- Add the latest version of package to your pubspec.yaml (and run
dart pub get):
dependencies:
fancy_animated_button: ^0.0.1
- Import the package and use it in your Flutter App.
import 'package:fancy_animated_button/fancy_animated_button.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: () {},
));
}
}
|
|
Next Goals #
- ✅ Add multiple animation in button.