frino_icons
FrinoアイコンパックはFlutterアイコンとして利用可能です。アプリで使用できる300以上の追加アイコンを提供しています。
22いいね 3230日間ダウンロード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);
...