Flutter Internals

김형태·2024년 2월 10일
0

Flutter

목록 보기
1/5

A Look Behind The Scenes

  • Widget, Element & Render Trees
  • How Flutter Updates UIs
  • Understanding Keys

Three Trees

Widget Trees

  • combination of widgets in your code

Element Tree

  • in-memory representation of your widgets
  • Used for determining necessary UI updates

Widget Trees <-> Element Tree

Render Tree

  • The visibile UI building blocks
  • Updated when determined via element tree comparisons

profile
steady

0개의 댓글