NikSWE / flutter_feather_icons

Flutter package for Feather Icons

Home Page:https://github.com/feathericons/feather

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

repo-header

flutter_feather_icons v2.0.0

Important Note

Naming conventions have been changed for better readability and consistancy with all other flutter icon packs

To convert from the catalog simply follow this method

alert-circle => alertCircle

arrow-down-left => arrowDownLeft

if still you face any problems have a look into the documentation (class FeatherIcons)

280 General Purpose Icons for Flutter

This flutter package allows you to use all the Feather Icons made by Feather Team

Find it at pub.dartlang.org

Installation

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

flutter_feather_icons: ^2.0.0

Usage

import "package:flutter_feather_icons/flutter_feather_icons.dart";

class MyAwesomeWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      icon: Icon(FeatherIcons.github),
      onPressed: () {
          print("awesome platform to share code and ideas");
      }
    );
  }
}

Example

View the flutter app in the example directory

Screenshot

screenshot-1 screenshot-2

About

Flutter package for Feather Icons

https://github.com/feathericons/feather

License:MIT License


Languages

Language:Dart 95.8%Language:Objective-C 2.2%Language:Java 1.1%Language:Shell 0.9%