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).
विजेटहरूलाई रूखमा संरचित गर्दै
// build a UI by NESTING widgets (composition)
Scaffold( // page structure
appBar: AppBar(title: Text('Home')), // app bar with text
body: Center( // centers its child
child: Column( // vertical layout
children: [
Text('Hello'), // text widget
ElevatedButton( // a button
onPressed: () {},
child: Text('Click'),
),
],
),
),
)
// → a WIDGET TREE: Scaffold > Center > Column > [Text, Button]
