Flutter'da her şey bir widget'tir — UI öğeleri (butonlar, metin, resimler), düzen yapıları (satırlar, sütunlar, padding) ve hatta uygulama kendisi de birer widget'tir. Widget'ler, tüm kullanıcı arayüzünü oluşturmak için bir araya gelen değişmez yapı taşlarıdır.
Her şey bir widget'tir
Widgets describe the UI. EVERYTHING is a widget:
→ visible elements: Text, Image, Icon, Button, etc.
→ layout: Row, Column, Container, Padding, Center, Stack, etc.
→ structure: Scaffold (page structure), AppBar, etc.
→ even the app itself (MaterialApp) and abstract things (Padding, Theme)
→ You build UI by COMPOSING widgets into a tree (widgets contain other widgets).
