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

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!

Awesome Lists containing this project

README

          

# Widget Animator

[![Build Status](https://travis-ci.org/antonvinceguinto/widget-animator.svg?branch=master)](https://travis-ci.org/antonvinceguinto/widget-animator)
[![Build Status](https://img.shields.io/badge/pub-v1.0.0+8-green)]()

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

![](demo.gif)

# 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