Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/brianegan/gradient_animations

An example of how to animate gradients in flutter
https://github.com/brianegan/gradient_animations

animation flutter gradients

Last synced: 11 days ago
JSON representation

An example of how to animate gradients in flutter

Awesome Lists containing this project

README

        

# gradient_animation

An example project demonstrating how to animate gradients!

Image demonstrating the gradient animations

## Getting Started

Run the app as you normally do with Flutter!

## Key Concepts

### Animations with ScrollController

1. Define a begin and end gradient
2. Every time the user scrolls, calculate how far down the list we are from 0.0 (top) - 1.0 (bottom)
3. Use `beginGradient.lerpTo(endGradient, 0.7)`

### Animations with Tweens

1. Implement a Tween class, using static the `lerp` methods provide by the `LinearGradient` class.
2. Create an `Animation` from the Tween using an `AnimationController`: `final animation = tween.animate(controller);`
3. Redraw the gradient animation every time it changes using an `AnimatedBuilder`
4. Provide a button to trigger the animation forward / backward