frino_icons
Frino आइकन पैक को फ्लटर आइकन के रूप में उपलब्ध किया गया है। अपने ऐप्स में उपयोग करने के लिए 300 से अधिक अतिरिक्त आइकन प्रदान करता है।
22लाइक 3230-दिन डाउनलोड140Pub अंक
AndroidiOSWebmacOSWindowsLinux
Frino आइकन लाइब्रेरी, Frino आइकन (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);
...