September 2019
Beginner
512 pages
12h 52m
English
The AnimatedBuilder widget exists so that we can build complex widgets that wish to include animation as part of a larger build function. Just like any other widget, it is included in the widgets tree and has a child property. Let's check its constructor:
const AnimatedBuilder({ Key key, @required Listenable animation, @required TransitionBuilder builder, Widget child})
As you can see, we have a few important properties here, besides the well-known key property:
Read now
Unlock full access