Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hadesptit/flutter_elastic_animation

πŸ“˜πŸ“˜πŸ“˜γ…€Flutter elastic animation widget. One of the common curves anim class.
https://github.com/hadesptit/flutter_elastic_animation

animation curves curves-animation elastic flutter tween tween-animation

Last synced: 21 days ago
JSON representation

πŸ“˜πŸ“˜πŸ“˜γ…€Flutter elastic animation widget. One of the common curves anim class.

Awesome Lists containing this project

README

        

## Getting Started

- An example of elastic animation.

- [A collection of common animation curves](https://api.flutter.dev/flutter/animation/Curves-class.html)

## How To Use

```dart
ElasticAnimationWidget(
child: Container(width: 100, height: 100, color: Colors.green),
duration: Duration(milliseconds: 3000),
tweenLevel: TweenLevel.LARGE,
repeat: true,
reverse: true,
);
```