Flutter layout widgets — जसे की Row, Column, Container, Stack, आणि इतर — यांना compose करून layouts तयार करते जे त्यांच्या children ला व्यवस्थित करतात. UI structures तयार करण्यासाठी या layout widgets समजणे आणि ते कसे एकत्रित होतात हे समजणे मूलभूत आहे.
मुख्य 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
