Search
⚠️

Flutter Icon Weight Error

Problem [Error Message]
This issue happens when the user tries to define the weight of the icon. There is one trick we can try to solve this issue.
Original Code
Icon( Icons.add, color: Colors.white, size: 25.0, weight: IconWeight.w800, )
Dart
복사
Solution Code
Text( String.fromCharCode(Icons.add.codePoint), style: TextStyle( inherit: false, color: Colors.white, fontSize: 25.0, fontWeight: FontWeight.w800, fontFamily: Icons.add.fontFamily, package: Icons.add.fontPackage, ), )
Dart
복사

Reference