Lesson 18: Text & Container Widgets


Container(
  padding: EdgeInsets.all(16),
  color: Colors.blue,
  child: Text(
    'Hello Flutter',
    style: TextStyle(color: Colors.white),
  ),
)
    
Previous Next Lesson