总结:
Container — 类似于 html 的div 或者是 OC 的view
alignment Container 区域范围内的所有控件的对齐方式
width Container 区域宽度
height Container 区域高度
color : colors.xxx 区域颜色
padding:const EdgeInsets.all() 内间距 距离上下左右所有相同距离
margin: const EdgeInset.fromLTRB() 外间距 距离上下左右所有不同距离
区域渐变
decoration : new BoxDecoration {
gradient : const LinearGradient{
colors:[颜色集合]
},
border:Border.all(xx,color:Colors.red),//外边框宽度和颜色
}