bouncy_effect 1.0.5
bouncy_effect: ^1.0.5 copied to clipboard
A widget that adds a bouncy scale animation effect to its child when tapped.
import 'package:app/pages/bouncy_effect_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: 'Bouncy Effect Example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: const BouncyEffectExample(),
);
}
}