基本使用介绍:
new Container(
margin: const EdgeInsets.all(10.0), //距上层容器的距离
color: const Color(0xFF00FF00), //当前容器的背景色
width: 375.0, //当不设置该属性时,默认占满全屏
height: 300.0,
child: new Center( //内部组件
child: new Text(text),
),
transform: new Matrix4.rotationZ(0.1), //当前container是否旋转
),
网友评论