在开发过程中,Container组件使用多了,会有一些重复的代码,比如矩形边框和圆角,需要额外加decoration,使用card已经默认加上了边框和阴影

1
2
3
4
Card(
  margin: EdgeInsets.all(10),
  child: ...
)