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