flutter Container 边框
Container(
width: 300.0,
height: 300.0,
decoration:
BoxDecoration(
// 边框
border: Border.all(
// 颜色
color: Colors.red,
// 线条宽度
width: 3.0
)
),
child: Center(
child: Text('我有边框'),
),
)