flutter_brand_icons
1.0.0
使用此软件包而不是此包。

命名惯例已更改,以更好地使用所有其他扑面图标包装
要从目录转换,只需遵循此方法
.NET => dotNet
Apple Pay => applepay
如果您仍然遇到任何问题,请查看文档(Brandicons类),您也可以通过适当的命名系统签名为全面目录的示例应用程序
此扑面包装使您可以使用Dan Leech和其他人创建的所有品牌图标
在pub.dartlang.org上找到它
在dependencies: pubspec.yaml的部分,添加以下行:
flutter_brand_icons : < latest_version > import "package:flutter_brand_icons/flutter_brand_icons.dart" ;
class MyAwesomeWidget extends StatelessWidget {
Widget build ( BuildContext context) {
return IconButton (
icon : Icon ( BrandIcons .github),
onPressed : () {
print ( "awesome platform to share code and ideas" );
}
);
}
}在example目录中查看Flutter应用程序

