使用IconData CodePoint时未显示颤振材料图标

时间:2020-10-18 09:58:12

标签: flutter dart

我在Widget后面加上了要显示的图标(close_rounded)。

const ListTile(
  contentPadding: EdgeInsets.fromLTRB(20.0, 0.0, 20.0, 0.0),
  trailing: Icon(
    IconData(0xf11b, fontFamily: 'MaterialIcons'), // <--- not renderable
    size: 40.0,
    color: Colors.deepOrangeAccent,
  ),
  title: Text(
    'The Enchanted Nightingale The Enchanted Nightingale',
    style: TextStyle(
      fontWeight: FontWeight.bold,
    ),
  ),
  subtitle: Text(
    '15 secs',
    style: TextStyle(fontSize: 14.0),
  ),
);

我要使用Icon显示的IconData(0xf11b, fontFamily: 'MaterialIcons')

我从close_rounded复制的IconDataIcon_class的图标之一。但是,它显示了这样的内容:

enter image description here

我还检查了pubspecs.yaml,并且uses-material-design: true默认处于启用状态

0 个答案:

没有答案