0

カードウィジェットにアイコンを追加したいので、以下のように 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'),),
      ],
    ),
  ),
);

表示したいアイコンは、

call.png

しかし、表示されるのは、

ここに画像の説明を入力

pubspec.yaml のアセットも適切にインデントされています。

4

2 に答える 2