Skip to content

NikSWE/flutter_feather_icons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0ad50a4 Â· Mar 31, 2021

History

26 Commits
Mar 31, 2021
Jul 16, 2019
Jul 16, 2019
Jul 16, 2019
Mar 4, 2021
Mar 31, 2021
Jul 16, 2019
Mar 31, 2021
Jul 16, 2019
Mar 31, 2021
Mar 4, 2021
Mar 31, 2021

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