https://github.com/polilluminato/fluentui-icons
Microsoft Fluent UI Icons based on the official repo
https://github.com/polilluminato/fluentui-icons
flutter icons microsoft ui
Last synced: about 1 year ago
JSON representation
Microsoft Fluent UI Icons based on the official repo
- Host: GitHub
- URL: https://github.com/polilluminato/fluentui-icons
- Owner: polilluminato
- License: mit
- Created: 2020-07-04T13:53:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T21:06:42.000Z (about 5 years ago)
- Last Synced: 2025-04-12T02:03:11.248Z (about 1 year ago)
- Topics: flutter, icons, microsoft, ui
- Language: Dart
- Homepage:
- Size: 274 KB
- Stars: 19
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# fluentui_icons
Icon package from Flutter based on [fluentui-system-icons](https://github.com/microsoft/fluentui-system-icons) from [Microsoft](https://github.com/microsoft).
## Icon List
All icons are included in the package, you can search for an icon and find the complete icon list [here](https://github.com/microsoft/fluentui-system-icons/blob/master/icons.md).
You don't have to specify the size of the icon but only its name.
## Usage
To use this plugin, add `fluentui_icons` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/)
``` dart
dependencies:
fluentui_icons: ^1.0.0
```
### Install it
``` bash
$ flutter pub get
```
### Import it
``` dart
import 'package:fluentui_icons/fluentui_icons.dart';
```
## Credits
- [FlutterIcon - Flutter custom icons generator
](https://www.fluttericon.com/)
- [How to use custom icons in Flutter](https://medium.com/flutterpub/how-to-use-custom-icons-in-flutter-834a079d977)
- [Flutter Custom Icons – Automatic & Manual Way (Icon Font or SVG)](https://resocoder.com/2019/08/15/flutter-custom-icons-automatic-manual-way-icon-font-or-svg/)