English | 简体中文
UI elements for Flutter
The current repository is created out of personal interest and my experience in front-end development, as a Flutter-based UI library project.
The goal of this project is to build a practical, convenient, and simple Flutter UI component library.
This aims to facilitate daily complex business development by focusing on business functionality and custom component development.
$ flutter pub add muse_uiimport 'package:muse_ui/button/muse_button.dart';
import 'package:muse_ui/button/types.dart';MuseButton(
text: "Square",
type: ButtonType.primary,
borderType: ButtonBorderType.square,
click: () => {},
)$ cd apps/muse_demo
$ flutter pub get
$ flutter runModify the muse_ui 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 UI
│ └── muse_demo Building applications using muse_ui
│
└── packages/muse_ui # muse_ui source code
└── lib muse_ui source code rootMIT

