Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianegan/open_iconic_flutter
The Open Iconic icon pack available as a set of Flutter Icons
https://github.com/brianegan/open_iconic_flutter
dart flutter flutter-icons icon-pack open-iconic
Last synced: 8 days ago
JSON representation
The Open Iconic icon pack available as a set of Flutter Icons
- Host: GitHub
- URL: https://github.com/brianegan/open_iconic_flutter
- Owner: brianegan
- License: mit
- Created: 2017-06-24T16:22:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-31T14:19:16.000Z (almost 4 years ago)
- Last Synced: 2024-10-08T08:05:35.125Z (about 1 month ago)
- Topics: dart, flutter, flutter-icons, icon-pack, open-iconic
- Language: Dart
- Size: 66.4 KB
- Stars: 14
- Watchers: 4
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# open_iconic_flutter
The [Open Iconic](https://useiconic.com/open) icon pack available as set of Flutter Icons.
## Installation
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
open_iconic_flutter: 0.1.0
```## Usage
```dart
import 'package:open_iconic_flutter/open_iconic_flutter.dart';class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return new IconButton(
// Use the FontAwesomeIcons class for the IconData
icon: new Icon(OpenIconicIcons.fork),
onPressed: () { print("Pressed"); }
);
}
}
```## Example
View the Flutter app in the `example` directory to see all the available `OpenIconicIcons`.