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).
