Skip to content

NikSWE/flutter_feather_icons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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