Flutter లో, ప్రతిదీ విజెట్ — UI మూలకాలు (బటన్లు, టెక్స్ట్, చిత్రాలు), లేఅవుట్ నిర్మాణాలు (పంక్తులు, నిలువువరుసలు, ప్యాడింగ్), మరియు యాప్ కూడా విజెట్లు. విజెట్లు మార్పులేని నిర్మాణ బ్లాకులు, ఇవి మొత్తం యూజర్ ఇంటర్ఫేస్ను రూపొందించడానికి సమ్మిళితమవుతాయి.
ప్రతిదీ విజెట్
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).
