Skip to content

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

License

Notifications You must be signed in to change notification settings

marianoarga/open_iconic_flutter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

  open_iconic_flutter: 0.1.0    

Usage

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.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 93.8%
  • Ruby 2.9%
  • Objective-C 2.2%
  • Java 1.1%