A Look Behind The Scenes
- Widget, Element & Render Trees
- How Flutter Updates UIs
- Understanding Keys
Three Trees
- combination of widgets in your code
Element Tree
- in-memory representation of your widgets
- Used for determining necessary UI updates
Render Tree
- The visibile UI building blocks
- Updated when determined via element tree comparisons