Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.03 KB

README.md

File metadata and controls

53 lines (36 loc) · 1.03 KB

bounce_button

coverage style: very good analysis License: MIT

Flutter package for creating a widget that adds bounce animation to its child.


Features

TODO: Example gifs


Usage

To use this plugin, add bounce_button as a dependency in your pubspec.yaml from git like so:

bounce_button:
    git:
      url: https://github.com/willhlas/bounce_button.git
      ref: main

Example

Import the library

import 'package:bounce_button/bounce_button.dart';

onTap, and child is required in the widget.

BounceButton(
  onTap: () {},
  child: // Widget
)