Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.