bouncy_effect 1.0.5 copy "bouncy_effect: ^1.0.5" to clipboard
bouncy_effect: ^1.0.5 copied to clipboard

A widget that adds a bouncy scale animation effect to its child when tapped.

example/lib/main.dart

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(),
    );
  }
}
3
likes
160
points
17
downloads

Publisher

verified publisherwhybex.com

Weekly Downloads

A widget that adds a bouncy scale animation effect to its child when tapped.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on bouncy_effect