Slide 7
Slide 7 text
UI is entirely code
• You write your UI in code as the rest of the app, not in a
declarative language
• Flutter favors composition over inheritance, almost everything
is a Widget, even Padding
• Two kinds of Widgets:
• StatelessWidget: immutable views, ex. a text
• StatefullWidget: mutable views, ex. list of items retrieved from the
network