flutter打包报错This application cannot tree shake icons fonts. It has non-constant instances of IconData

使用第三方阿里icon时候,run的时候没问题,build时候报下面错误

在这里插入图片描述
解决方法 在Icon 前面加const修饰
在这里插入图片描述

其他方法

1.用命令 flutter build apk --no-tree-shake-icons 来打包,(不过这个方法不建议,因为以后都不能用菜单中的Build Apk来打包了。。。)

2.在IconData之前加上const;

3.直接换掉IconData中的图片(阿里妈妈网站的图片索引),用本地图片的加载方式去显示图片。

猜你喜欢

转载自blog.csdn.net/qq_42944436/article/details/108485730