October 2019
Intermediate to advanced
550 pages
8h 6m
English
Animations play an important role in mobile apps to provide visual feedback for end users. This chapter covers recipes related to animations in Flutter.
You want to create simple animations.
Use AnimationController class to create simple animations.
Animations in Flutter have a value and a status. The value of an animation may change over time. Animations are represented using abstract Animation<T> class. Animation class extends from Listenable class. You can add listeners to Animation objects to get notified for changes of value or status.
AnimationController ...
Read now
Unlock full access