答案 0 :(得分:2)
输出:
它具有shape
属性,该属性需要Border
可以更改。
Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(40), // if you need this
side: BorderSide(
color: Colors.grey.withOpacity(0.2),
width: 1,
),
),
child: Container(
color: Colors.white,
width: 200,
height: 200,
),
)
我认为您显示的屏幕截图也可以通过使用elevation
的{{1}}属性来实现。