Complete the code to create a Container with a fixed width of 100 pixels.
Container(width: [1], height: 50, color: Colors.blue)
The width property sets the container's width. Using 100 sets it to 100 pixels wide.
Complete the code to add padding of 16 pixels inside the Container.
Container(padding: EdgeInsets.[1](16), color: Colors.red)
EdgeInsets.all(16) adds 16 pixels of padding on all sides inside the container.
Fix the error in the code to set a circular border radius of 12 pixels.
Container(decoration: BoxDecoration(borderRadius: BorderRadius.[1](12)))
BorderRadius.circular(12) creates a border radius with 12 pixels on all corners.
Fill both blanks to create a Container with a blue background and a margin of 20 pixels on all sides.
Container(margin: EdgeInsets.[1](20), decoration: BoxDecoration(color: Colors.[2]))
EdgeInsets.all(20) adds margin of 20 pixels on all sides. Colors.blue sets the background color to blue.
Fill all three blanks to create a Container with width 150, height 150, and a green border of width 4.
Container(width: [1], height: [2], decoration: BoxDecoration(border: Border.all(color: Colors.[3], width: 4)))
Setting width and height to 150 makes the container square. Border.all with Colors.green and width 4 creates a green border.