ufukhawk / bouncing_widget

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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,
    ),
  ),
),

About

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

License:MIT License


Languages

Language:Dart 77.7%Language:HTML 11.9%Language:Swift 9.2%Language:Kotlin 1.0%Language:Objective-C 0.3%