Text widget代码练习

Container 有点类似Layout
Container(
child: Text('Hello Flutter',
style:TextStyle(fontSize: 50.0,
color:Colors.orange),),
alignment: Alignment.center,
width: 300.0,
height: 400.0,
color: Colors.purple,
)
containerWidget