我在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复制的IconData
是Icon_class的图标之一。但是,它显示了这样的内容:
我还检查了pubspecs.yaml
,并且uses-material-design: true
默认处于启用状态