Flutter मध्ये, सर्वकाही एक widget आहे — UI घटक (बटन, मजकूर, प्रतिमा), लेआउट संरचना (rows, columns, padding), आणि अगदी अॅप स्वतः सर्व widgets आहेत. Widgets हे अपरिवर्तनीय बिल्डिंग ब्लॉक्स आहेत जे संपूर्ण वापरकर्ता इंटरफेस बनवण्यासाठी एकत्रित होतात.
सर्वकाही एक 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).
