frino_icons
Der Frino-Icon-Pak ist als Flutter-Icons verfügbar. Bietet über 300 zusätzliche Icons für Ihre Apps.
22Likes 3230-Tage-Downloads140Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Frino-Ikonenbibliothek, basierend auf Frino Icons (von rafalfuczynski.com/frino/) und mit Hilfe von FlutterIcon.com
{"sdk":"flutter"}{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf 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);
...