animbutton 1.0.3
animbutton: ^1.0.3 copied to clipboard
Flutter animated button package: Elegant UI interactions with smooth animations, customizable styles, and seamless integration across the platforms.
import 'package:example/src/example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const Example(),
);
}
}