Flutter layout widgets — जस्तै Row, Column, Container, Stack, र अन्य — लाई compose गरेर layouts बनाउँछ जुन तिनीहरूका children लाई arrange गर्छ। यी layout widgets र तिनीहरू कसरी संयुक्त हुन्छन् भन्ने कुरा बुझ्नु UI संरचना बनाउन मौलिक छ।
Core layout widgets
ROW → arrange children HORIZONTALLY (left to right)
COLUMN → arrange children VERTICALLY (top to bottom)
CONTAINER → a box: padding, margin, size, color, decoration, alignment (very common)
STACK → overlay children on top of each other (z-axis, positioned)
PADDING → add space around a child
CENTER → center a child
EXPANDED / FLEXIBLE → make children fill available space (in a Row/Column)
SizedBox → fixed-size box / spacing
ListView → scrollable list of children
