Build: Alignment Demo Screen
This screen shows three colored boxes arranged in a row. The boxes are aligned using MainAxisAlignment and CrossAxisAlignment properties to demonstrate how they affect layout.
Target UI
--------------------------------- | Alignment Demo Screen | |-------------------------------| | [ Red ] [ Green ] [ Blue ] | | | | | | | ---------------------------------
Use a Row widget to arrange three Containers horizontally.
Set MainAxisAlignment to spaceEvenly to spread boxes evenly across the row.
Set CrossAxisAlignment to center to vertically center the boxes.
Each box should be a square of 80x80 pixels with colors red, green, and blue.
Add a title text at the top with the screen name.