Flutter layout widgets को compose करके layouts बनाता है — जैसे Row, Column, Container, Stack, और अन्य — जो अपने children को arrange करते हैं। इन layout widgets को समझना और उन्हें कैसे combine करना है यह UI structures बनाने के लिए fundamental है।
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
