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).
Widgets ને tree માં રચવું
// 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]
