FLUTTER ECOSYSTEM

jlnrrg/simple_icons

सरल आइकन पैक फ्लटर आइकन के रूप में उपलब्ध है। लोकप्रिय ब्रांड के लिए 1500 से अधिक मुफ्त SVG आइकन प्रदान करता है।

simple_icons प्रोजेक्ट कवर
Stars
39
Forks
12
अंतिम पुश (UTC)
7 जून 2026
प्रोजेक्ट स्थिति
सक्रिय
Jlnrrg GitHub avatar
GITHUB User

Jlnrrg ↗

Germany
भाषाएँDartC++CMakeHTMLShellCPythonSwiftKotlinObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 6 आइटम
  • flutter{"sdk":"flutter"}
  • alchemistडेवलपमेंट^0.14.0
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • recaseडेवलपमेंट^4.1.0
  • unorm_dartडेवलपमेंट^0.3.2
  • xmlडेवलपमेंट^7.0.1

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

Simple Icons

Simple Icons: Flutter

A Flutter package for Simple Icons, which provides over 1500 Free SVG icons for popular brands.
See them all on one page at SimpleIcons.org.
Contributions, corrections & requests can be made on GitHub.

Naming

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

Additionally:

  • special characters ➔ written in words
  • names starting with a number ➔ the letter 'n' placed in front
  • dart reserved words ➔ 'icon' placed in the back

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.
Some brands did not receive a color. This is a known error in the build script.
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


website