最佳答案
我正在创建Container()
,我给了它一个边框,但如果有圆形边框就更好了。
这是我现在拥有的:
Container(
width: screenWidth / 7,
decoration: BoxDecoration(
border: Border.all(
color: Colors.red[500],
),
),
child: Padding(
padding: EdgeInsets.all(5.0),
child: Column(
children: <Widget>[
Text(
'6',
style: TextStyle(
color: Colors.red[500],
fontSize: 25),
),
Text(
'sep',
style: TextStyle(
color: Colors.red[500]),
)
],
),
),
);
我试着把ClipRRect
放在它上面,但是这样就把边界剪掉了。有解决办法吗?