Complete the code to create a Column that arranges children vertically.
Column(children: [Text('Hello'), Text('World')], [1]: MainAxisAlignment.center)
The mainAxisAlignment property arranges children vertically in a Column.
Complete the code to arrange children horizontally in a Row widget.
Row(children: [Icon(Icons.star), Icon(Icons.star_border)], [1]: MainAxisAlignment.spaceBetween)The mainAxisAlignment controls horizontal arrangement in a Row.
Fix the error in the code to properly arrange children in a Column.
Column(children: [Text('A'), Text('B')], crossAxisAlignment: [1])
crossAxisAlignment expects a CrossAxisAlignment value, not MainAxisAlignment or Alignment.
Fill both blanks to create a Row that centers children vertically and spaces them evenly horizontally.
Row(children: [Icon(Icons.home), Icon(Icons.settings)], [1]: MainAxisAlignment.spaceEvenly, crossAxisAlignment: CrossAxisAlignment.[2])
mainAxisAlignment controls horizontal spacing in Row, and crossAxisAlignment controls vertical alignment.
Fill all three blanks to create a Container with padding, margin, and a blue background color.
Container(padding: EdgeInsets.[1](10), margin: EdgeInsets.[2](horizontal: 5), decoration: BoxDecoration(color: Colors.[3]))
EdgeInsets.all sets padding on all sides, EdgeInsets.symmetric sets margin horizontally, and Colors.blue sets the background color.