FLUTTER ECOSYSTEM

alialnaghmoush/remixicon

Remix icon डिज़ाइनरों और विकासकर्मियों के लिए ध्यान से बनाई गई खुले स्रोत की उदासीन शैली के प्रणाली प्रतीकों का सेट है।

remixicon प्रोजेक्ट कवर
Stars
8
Forks
5
अंतिम पुश (UTC)
4 अप्रैल 2026
प्रोजेक्ट स्थिति
सक्रिय
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