我想向卡片小部件添加一个图标,所以我使用了 ImageIcon 小部件,如下所示
Card(
color: colorPalette.cultured,
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Row(
children: <Widget>[
Text(label,style: TextStyle(fontWeight: FontWeight.w600,fontSize: 15.0,fontFamily: 'Poppins'),),
Spacer(),
ImageIcon(AssetImage('assets/icons/call.png'),),
],
),
),
);
我要显示的图标是,
但显示的是,
pubspec.yaml 中的资产也正确缩进。