ant_icons_plus 2.0.0
ant_icons_plus: ^2.0.0 copied to clipboard
Ant Design icon pack for Flutter providing comprehensive icon coverage, easy integration via font assets, and ready-to-use widgets for apps.
2.0.0 #
- Breaking: icon prefix renamed from
AntdIcons*toAntIcons*(API change).
Migration #
Rename usages in your code like this:
Before:
Icon(AntdIcons.userOutlined)
After:
Icon(AntIcons.userOutlined)
1.0.1 #
- Updated package
descriptioninpubspec.yamlto improve package summary and meet pub.dev requirements (50–180 characters).
1.0.0 initial release #
- 831 Ant Design icons: 447 Outlined, 234 Filled, and 150 TwoTone.
- Outlined & Filled icons use a custom icon font (
IconData) — works with Flutter's nativeIconwidget. - TwoTone icons use inline SVG via
flutter_svgwithAntdIconwidget. - TwoTone icons support a configurable secondary color.
- Icons inherit color from Flutter's ambient
IconTheme. - Font-based icons support tree shaking in release builds.
- Icons are auto-generated by
scripts/generate.dart.