https://github.com/antonvinceguinto/widget-animator
A package for flutter to easily animate a widget. It even makes listview animation easier to implement!
https://github.com/antonvinceguinto/widget-animator
flutter flutter-animations flutter-apps flutter-package widget-animator
Last synced: 16 days ago
JSON representation
A package for flutter to easily animate a widget. It even makes listview animation easier to implement!
- Host: GitHub
- URL: https://github.com/antonvinceguinto/widget-animator
- Owner: antonvinceguinto
- License: other
- Created: 2019-10-29T10:36:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-20T05:41:59.000Z (over 3 years ago)
- Last Synced: 2023-08-20T23:30:33.548Z (almost 3 years ago)
- Topics: flutter, flutter-animations, flutter-apps, flutter-package, widget-animator
- Language: Dart
- Homepage: https://pub.dev/packages/widget_animator
- Size: 2.15 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Widget Animator
[](https://travis-ci.org/antonvinceguinto/widget-animator)
[]()
This package helps you to easily animate your widgets with just a few steps.
This works well on your ListView items and... actually all of your widgets!
# Demo

# Usage
```dart
return Scaffold(
backgroundColor: Colors.white,
body: ListView.builder(
itemCount: 32,
itemBuilder: (context, index) {
return WidgetAnimator(
curve: Curves.easeIn, // Optional, choose the type of animation curve you want!
duration: Duration(milliseconds: 120), // Optional, defaults to 290ms
child: ListTile(
title: Text('Item $index'),
),
);
},
),
);
```
Check me out: https://antonguinto.com