frino_icons
The Frino Icon pack available as Flutter Icons. Provides 300+ additional icons to use in your apps.
22Likes 3230-day downloads140Pub points
AndroidiOSWebmacOSWindowsLinux
Frino icon library, based on Frino Icons (by rafalfuczynski.com/frino/) and with the help of FlutterIcon.com
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
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);
...