项目作者: brianegan

项目描述 :
The Open Iconic icon pack available as a set of Flutter Icons
高级语言: Dart
项目地址: git://github.com/brianegan/open_iconic_flutter.git
创建时间: 2017-06-24T16:22:24Z
项目社区:https://github.com/brianegan/open_iconic_flutter

开源协议:Other

下载


open_iconic_flutter

The Open Iconic icon pack available as set of Flutter Icons.

Installation

In the dependencies: section of your pubspec.yaml, add the following line:

  1. open_iconic_flutter: 0.1.0

Usage

  1. import 'package:open_iconic_flutter/open_iconic_flutter.dart';
  2. class MyWidget extends StatelessWidget {
  3. Widget build(BuildContext context) {
  4. return new IconButton(
  5. // Use the FontAwesomeIcons class for the IconData
  6. icon: new Icon(OpenIconicIcons.fork),
  7. onPressed: () { print("Pressed"); }
  8. );
  9. }
  10. }

Example

View the Flutter app in the example directory to see all the available OpenIconicIcons.