bouncing_widget 2.0.0 copy "bouncing_widget: ^2.0.0" to clipboard
bouncing_widget: ^2.0.0 copied to clipboard

A widget that enables you to add a bouncing animation on a widget.

bouncing_widget #

A widget that enables you to add a bouncing animation on a widget.

Example #

How does it work ? #

You just have to encapsulate the widget of your choice with a BouncingWidget.

You may also use a scaleFactor to customize the scaling effect as in the gif example. Or even customize the animation's duration with the duration parameter (200 milliseconds by default).

BouncingWidget(
  duration: Duration(milliseconds: 100),
  scaleFactor: 1.5,
  onPressed: () {
    print("onPressed");
  },
  child: Text(
    "Hello !",
    style: TextStyle(
      color: Colors.white,
      fontWeight: FontWeight.bold,
      fontSize: 35,
    ),
  ),
),
199
likes
140
pub points
93%
popularity

Publisher

unverified uploader

A widget that enables you to add a bouncing animation on a widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on bouncing_widget