Flutter中集成Font Awesome
Posted ybst
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter中集成Font Awesome相关的知识,希望对你有一定的参考价值。
1、添加引用
在 pubspec.yaml文件中,加入 font awesome的引用
1 dependencies: 2 flutter: 3 sdk: flutter 4 5 # The following adds the Cupertino Icons font to your application. 6 # Use with the CupertinoIcons class for ios style icons. 7 cupertino_icons: ^0.1.0 8 9 #font awesome icon 这行是新加的 10 font_awesome_flutter: 8.2.0
点击该文件上方的 Packages Get链接。
2、使用
import ‘package:font_awesome_flutter/font_awesome_flutter.dart‘;
Icon(FontAwesomeIcons.solidCircle)
以上是关于Flutter中集成Font Awesome的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Flutter 中为 Material Icons 和 Font Awesome Icons 使用相同的大小?