FLUTTER ECOSYSTEM

pedrolemoz/unicons-flutter

당신의 꿈의 프로젝트에서 사용할 수 있는 1000개 이상의 아름다운 아이콘과 Flutter가 제공하는 모든 커스터마이제이션 기능

unicons-flutter 프로젝트 이미지
Stars
18
Forks
7
최근 푸시(UTC)
2026. 5. 18.
프로젝트 상태
활성
Pedro Lemos GitHub avatar
언어DartC++CMakeJavaScriptSwiftCHTMLShellKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Unicons

https://github.com/user-attachments/assets/24d6fb58-356e-49f3-8a8e-68f82073d40e

A Flutter library for Unicons.

Note: All icon data is auto-generated based on the latest release of Unicons.

style: effective dart GitHub repo size Project Owner GitHub stars GitHub forks

Installation

Add the dependency to your pubspec.yaml file.

dependencies:
  unicons: any

We recommend flutter pub upgrade to always stay updated with the latest release.

Usage

The library exposes all of the Unicons as IconData. If you want to use Line icons, use UniconsLine class, but if you want to use Solid icons, use UniconsSolid instead.

import 'package:flutter/material.dart';
import 'package:unicons/unicons.dart';

class MyWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return Container(
      height: MediaQuery.of(context).size.height,
      width: MediaQuery.of(context).size.width,
      child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        crossAxisAlignment: CrossAxisAlignment.center,
        children: [
          Icon(UniconsLine.camera),
          Icon(UniconsLine.baseball_ball),
          Icon(UniconsSolid.airplay),
          Icon(UniconsSolid.battery_empty),
        ],
      ),
    );
  }
}

License

Unicons are Open Source icons and licensed under Apache 2.0. You're free to use these icons in your personal and commercial project. We would love to see the attribution in your app's about screen, but it's not mandatory.