frino_icons
Frino 圖標套件以 Flutter 圖標形式提供,為您的應用提供超過 300 個額外圖標。
22喜歡 32近 30 天下載140Pub 分數
AndroidiOSWebmacOSWindowsLinux
Frino 圖示庫,基於 Frino Icons(由 rafalfuczynski.com/frino/ 提供)並借助 FlutterIcon.com 的協助
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Flutter Frino icon library, based on Frino Icons created by Rafał Fuczyński and with the help of FlutterIcon.com
Check icon list on https://www.rafalfuczynski.com/frino/
Frino Example Image
Include frino_icons in your pubspec.yaml file:
dependencies:
flutter:
sdk: flutter
frino_icons: ^2.0.0
If your IDE doesn't do it automatically, type:
flutter packages get
Import the package in your dart file and use Icon to get the actual icon widget:
import 'package:frino_icons/frino_icons.dart';
...
Icon _icon = Icon(FrinoIcons.f_code);
...