FLUTTER ECOSYSTEM

jlnrrg/simple_icons

Flutter 아이콘으로 제공되는 간단한 아이콘 팩입니다. 인기 브랜드용으로 1500개 이상의 무료 SVG 아이콘을 제공합니다.

simple_icons 프로젝트 이미지
Stars
39
Forks
12
최근 푸시(UTC)
2026. 6. 7.
프로젝트 상태
활성
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