Solution: Container Widget

In this lesson, you'll explore the solution to the "Container widget" challenge.

We'll cover the following

Solution: Container widget

You were asked to change the Container widget’s color to blue. Use the color property of the Container widget to modify the body of the screen as blue.

body: Container(	
         //Making container blue
          color: Colors.blue,
       ),

Get hands-on with 1200+ tech skills courses.