FLUTTER ECOSYSTEM

alialnaghmoush/remixicon

Remix Icon은 디자이너와 개발자를 위해 정교하게 제작된 오픈소스 중립 스타일의 시스템 심볼 세트입니다。

remixicon 프로젝트 이미지
Stars
8
Forks
5
최근 푸시(UTC)
2026. 4. 4.
프로젝트 상태
활성
Ali AlNaghmousgh GitHub avatar
GITHUB User

Ali AlNaghmousgh ↗

언어DartRubyHTMLPythonSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 3 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}
  • lints개발 의존성^5.0.0

원본 README

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

README 펼치기 / 접기

logo

Remix Icon For Flutter

Simply Delightful Icon System and Easy to use in flutter, Remix. v4.9.3

Remix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike a patchwork icon library, 3000+ icons are all elaborately crafted so that they are born with the genes of readability, consistency, and perfect pixels. Each icon was designed in "Outlined" and "Filled" styles based on a 24x24 grid. Of course, all the icons are free for both personal and commercial use.

icon demo View the full set of Remix Icons at remixicon.com.

Installation

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

remixicon: ^4.9.3

Usage

You can use it very easily. For example:

Icon(RemixIcons.home_3_line)

or

Icon(Remix.home_3_line)
import 'package:flutter/material.dart';
import 'package:remixicon/remixicon.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return IconButton(
        // Use Boxicons
        icon: Icon(RemixIcons.home_3_line),
        onPressed: () {
            print('its done');
        }
    );
  }
}

or

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return IconButton(
        // Use Boxicons
        icon: Icon(Remix.home_3_line),
        onPressed: () {
            print('its done');
        }
    );
  }
}

License

MIT