https://github.com/6thsolution/flutter_iconly
The Flutter implementation of Iconly icon sets.
https://github.com/6thsolution/flutter_iconly
dart flutter
Last synced: 8 months ago
JSON representation
The Flutter implementation of Iconly icon sets.
- Host: GitHub
- URL: https://github.com/6thsolution/flutter_iconly
- Owner: 6thsolution
- License: mit
- Created: 2021-08-26T04:45:35.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T17:23:59.000Z (almost 3 years ago)
- Last Synced: 2025-07-09T23:26:45.571Z (12 months ago)
- Topics: dart, flutter
- Language: Dart
- Homepage: https://pub.dev/packages/iconly
- Size: 1.5 MB
- Stars: 32
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## Iconly
[](https://pub.dev/packages/iconly)
Flutter package for using [Iconly](https://iconly.pro) Icons. Iconly is totally free, and you can use this package to bring these awesome icons to your Flutter project.
This package has made from Iconly v2.3 version. following sets are currently available in this package:
- Light
- Bold
- Broken
**note:** since Flutter does not support multicolor Icons, we can not support **Bulk** Icon set. but we are going to implement that in the future.
## installation:
Add the following line to your `pubspec.yaml` file, under the `dependencies:` section:
``` yaml
dependencies:
iconly:
```
## Usage
``` dart
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
class IconlyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(IconlyLight.search),
onPressed: () { print("Pressed"); }
);
}
}
```
## Check the Example and find your Icon
We have created a sample project where you can find the icon you want and add it to your project. you can also run the example folder on mobile platforms and web. [Checkout This Link for more info.](https://6thsolution.github.io/flutter_iconly)