You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
888 B

6 years ago
# flutter_icons
6 years ago
[![pub package](https://img.shields.io/pub/v/flutter_icons.svg)](https://pub.dartlang.org/packages/flutter_icons)
6 years ago
Customizable Icons for Flutter,Inspired by react-native-vector-icons
6 years ago
6 years ago
## Notice
This project is under development, there is no stable version at present, we do not recommend you to use in production for the time being, welcome everyone to contribute code.
6 years ago
## Usage
To use this plugin, add `flutter_icons` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
## Example
6 years ago
6 years ago
``` dart
// Import package
import 'package:flutter_icons/flutter_icons.dart';
import 'package:flutter/material.dart';
6 years ago
6 years ago
Icon(Ionicons.getIcon("ios-search"));
Icon(AntDesign.getIcon("stepforward"));
Icon(FontAwesome.getIcon("glass"));
Icon(MaterialIcons.getIcon("ac-unit"));
6 years ago
```
##### More Icons will be added later , welcome everyone to contribute code.