Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 826 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 826 Bytes

frino_icons

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/icons/

Frino Example Image

Installing

Include frino_icons in your pubspec.yaml file:

dependencies:
  flutter:
    sdk: flutter
  frino_icons: ^1.0.1

If your IDE doesn't do it automatically, type:

flutter packages get

Using

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.code);
...

Credits