v5.9.55
community_material_icon
一个基于 https://materialdesignicons.com/ 的社区版 Material Design 图标 Flutter 包。
106喜欢 1.9万近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
一套社区制作的 Material Design 图标(https://materialdesignicons.com)作为 Flutter 图标
{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
A community material design icon as set of Flutter Icons
import 'package:community_material_icon/community_material_icon.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(CommunityMaterialIcons.alarm),
onPressed: () {
print('Pressed');
}
);
}
}