https://github.com/hanneskuettner/feather_icons_flutter
The Feather Icon pack available as Flutter Icons
https://github.com/hanneskuettner/feather_icons_flutter
flutter flutter-icons
Last synced: 2 months ago
JSON representation
The Feather Icon pack available as Flutter Icons
- Host: GitHub
- URL: https://github.com/hanneskuettner/feather_icons_flutter
- Owner: hanneskuettner
- License: mit
- Created: 2018-09-27T17:40:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-25T06:22:50.000Z (almost 4 years ago)
- Last Synced: 2025-02-13T10:53:18.708Z (3 months ago)
- Topics: flutter, flutter-icons
- Language: Dart
- Size: 135 KB
- Stars: 16
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# feather_icons_flutter
The [Feather](https://feathericons.com/) Icon pack created by [Cole Bemis](https://github.com/colebemis) available as set of Flutter Icons.
Based on Feather v4.7.3
## Installation
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
feather_icons_flutter: >=4.7.4
```## Usage
```dart
import 'package:feather_icons_flutter/feather_icons_flutter.dart';class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return new IconButton(
// Use the FeatherIcons class for the IconData
icon: new Icon(FeatherIcons.activity),
onPressed: () { print("Pressed"); }
);
}
}
```## Example
View the Flutter app in the `example` directory to see all the available `FeatherIcons`.
## Original Creator
This library is largely based on the [font_awesome_flutter](https://github.com/brianegan/font_awesome_flutter) library and is copyrighted by [Brian Egan](https://github.com/brianegan) under the terms of the MIT license.## Contributors
- Hannes Küttner