Future Builder
Widget that builds itself based on the latest
snapshot of interaction with a Future.
Slide 36
Slide 36 text
SetState() and Rebuild the tree
Slide 37
Slide 37 text
Stream Builder
Widget that builds itself based on the latest
snapshot of interaction with a Stream.
Slide 38
Slide 38 text
Scales and positions its child within itself according
to fit.
Fitted Box
Slide 39
Slide 39 text
A widget that displays its children in multiple
horizontal or vertical runs.
Wrap
Slide 40
Slide 40 text
A box in which a single widget can be scrolled.
SingleChildScollView
Slide 41
Slide 41 text
Animations are cool
Slide 42
Slide 42 text
AnimatedBuilder is useful for more complex widgets that
wish to include an animation as part of a larger build
function. To use AnimatedBuilder, simply construct the
widget and pass it a builder function.
Animated Builder
Slide 43
Slide 43 text
In the isolate you can perform more CPU intensive
processing (parsing a big JSON, for example), or perform
computationally intensive math, such as encryption or
signal processing.
Use Isolates
Slide 44
Slide 44 text
“ Make Separate Widgets For
Better Control Over the State “