Το Flutter δημιουργεί layouts συνθέτοντας layout widgets — όπως Row, Column, Container, Stack, και άλλα — που οργανώνουν τα παιδιά τους. Η κατανόηση αυτών των layout widgets και ο τρόπος με τον οποίο συνδυάζονται είναι θεμελιώδης για τη δημιουργία δομών UI.
Βασικά 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
