在Flutter应用中,最初很多图标都是以3种尺寸实现为png图像,如下所示:
child: new Image(
image: new AssetImage(widget.featureNavMenu.image),
),
需要一个字符串
image: "assets/images/superCheckMark.png",
现在,我想将孩子转换为自定义图标字体(字体字形)。
然而,改为此......
child: new Icon((icon), size: 25.0,),
并试图让它接受这个......
new Icon(MyIcons.superCheckMark, size: 30.0, color: Colors.white,),
打破了应用。
让应用接受图标而不是图片的正确方法是什么?根据Flutter的一些一般性文档,我实际上尝试了很多不同的东西,并且很难过。