new Card(
child: new Padding(
padding: EdgeInsets.all(15.0),
child: new Column(children: <Widget>[
new Text('Alarmas',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16, fontWeight: FontWeight.bold)),
问题很简单:如何在卡片上添加边框颜色?
答案 0 :(得分:0)
将卡片放入这样的容器中并添加颜色。
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.blue,
),
),
child : Card(
// your card here
), // Card
), // Container
或者您可以使用
Card(
side: new BorderSide(
color: Colors.blue,
),
),