Home

Awesome

<p align="center"> <a href="https://simpleicons.org/"> <img src="https://simpleicons.org/icons/simpleicons.svg" alt="Simple Icons" width=64 height=64> </a> <h3 align="center">Simple Icons: <em>Flutter</em></h3> <p align="center"> A Flutter package for Simple Icons, which provides over 1500 Free SVG icons for popular brands. <br> See them all on one page at <a href="https://simpleicons.org">SimpleIcons.org</a>.<br> Contributions, corrections & requests can be made on <a href="https://github.com/simple-icons/simple-icons/issues/new/choose">GitHub</a>.</p> </p>

Naming

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

Additionally:

To convert from the catalog simply follow this method

.NET ➔ dotNet

Apple Pay ➔ applepay

1Password ➔ n1password

abstract ➔ abstracticon

SimpleIconColors

As of version 10.1.2 the SimpleIconColors exists, which holds the brands hex color. </br> Some brands did not receive a color. This is a known error in the build script. <br> If you find any icon which you like to have color support for, feel free to open an issue.

Installation

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

dependencies:
  simple_icons: <latest_version>

Usage

import "package:simple_icons/simple_icons.dart";

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

Example

View the flutter app in the example directory

Screenshots

<br>

website