flutter_mdi_remap 1.0.1
flutter_mdi_remap: ^1.0.1 copied to clipboard
Shared Material Design Icons remap: a searchable, serializable MdiRemapIcon registry generated from flutter_material_design_icons, used across Layrz Flutter projects.
Changelog #
1.0.1 #
- Changed constraints to
flutter: ">=3.44.0 <4.0.0"andsdk: ">=3.12.0 <4.0.0"to support Flutter 3.44 and Dart 3.0.
1.0.0 #
- First stable release of
flutter_mdi_remap. MdiRemapIcontype carrying a stablename(mdi-...), searchabletags, and the renderableIconData.- Full generated registry of all 7,447 Material Design Icons (
iconMapping,MdiRemapIconsClasses). - Search and lookup API:
allMdiRemapIcons(),findMdiRemapIconByName(),searchMdiRemapIcons()(case-insensitive match over name and tags). - Icon-registry generator (
tool/generate_icons.dart,make icons) that regenerates the registry fromflutter_material_design_icons.
0.0.1 #
- Initial release.
MdiRemapIcon: an immutable icon record (name,tags,data) wrapping a Material Design Icon fromflutter_material_design_icons.- Generated registry of 7,447 icons:
MdiRemapIconsClasses(onestatic const MdiRemapIconper icon) andiconMapping(Map<String, MdiRemapIcon>keyed bymdi--prefixed name). - Typed accessor/search API:
findMdiRemapIconByName,searchMdiRemapIcons,allMdiRemapIcons. tool/generate_icons.dart(andmake icons) regenerates the registry from the installedflutter_material_design_iconspackage.