Flutter இல், எல்லாமும் widget ஆக உள்ளது — UI உறுப்புகள் (buttons, text, images), layout structures (rows, columns, padding), மற்றும் app itself கூட widgets ஆகும். Widgets என்பவை immutable building blocks ஆக இருந்து, முழு user interface ஐ அமைக்கின்றன.
Everything is a widget
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).
