simple_bounce_effect

  • An imteractive bounce animation that can be wrapped on widgets.

Installing:

In your pubspec.yaml

dependencies:
  simple_bounce_effect: ^1.0.0
import 'package:simple_bounce_effect/simple_bounce_effect.dart';

Usage:

Just wrap on any widget that you want:

Bounceable(
  onTap: () {},
  child: YourWidget(),
);