FlutterIconPicker icon indicating copy to clipboard operation
FlutterIconPicker copied to clipboard

Error: Material Icon Pack Name Issues

Open bigbrain-cmd opened this issue 1 year ago • 0 comments

In the material Icon pack, there is are issues on lines 1230-1232.

Issue: 'class__sharp': Icons.class__sharp, 'class__rounded': Icons.class__rounded, 'class__outlined': Icons.class__outlined,

The Icons.class__sharp has 2 underscores stopping it from reading properly.

it should be

'class__sharp': Icons.class_sharp, 'class__rounded': Icons.class_rounded, 'class__outlined': Icons.class_outlined,

bigbrain-cmd avatar Mar 29 '25 00:03 bigbrain-cmd