English | 简体中文
Icon Library for Muse UI
This project was created out of personal interest and my experience in front-end development. During my spare time, I learned to use Sketch tool and designed the first version of 32 font icons. Although the illustrations are quite rough, I don't plan to redraw them unless it's necessary.
$ flutter pub add muse_iconsimport 'package:muse_icons/muse_icon.dart';MuseIcons.acaleph /// type: IconDataMuseIcons.random /// type: IconData/// Return all random colors
MuseIcons.getRandomColor();
/// Return vibrant random colors, remove dull colors
MuseIcons.getVibrantRandomColor();
/// Return high-saturation HSB colors, more vibrant than ordinary random colors
MuseIcons.getRandomHSBColor();$ cd apps/muse_demo
$ flutter pub get
$ flutter runModify the muse_icons plugin in apps/muse_demo/pubspec.yaml to use a local path. By default, melos is automatically set to the local path and does not need to be modified.
├── apps # Examples related to Muse Icons
│ └── muse_demo Building applications using muse_icons
│
└── packages/muse_icons # muse_icons source code
└── lib muse_icons source code rootMIT