Flutter layouts ஐ layout widgets ஐ compose செய்து — Row, Column, Container, Stack, மற்றும் மற்றவை — அவற்றின் children களை ஏற்பாடு செய்கிறது. இந்த layout widgets களை புரிந்துகொள்ளல் மற்றும் அவை எப்படி combine ஆகின்றன என்பது UI structures ஐ உருவாக்குவதற்கு அடிப்படையாகும்.
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
