# Material.Components.Maui **Repository Path**: soasoft-admin/material.-components.-maui ## Basic Information - **Project Name**: Material.Components.Maui - **Description**: Material3 Components for .NET MAUI - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/yiszza/Material.Components.Maui - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2022-11-23 - **Last Updated**: 2022-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Material.Components.Maui 中文 | [English](README.md) Material3 Components for .NET MAUI, powered by SkiaSharp ![](assets/preview.gif) ## 快速开始 - 克隆这个仓库, 以及在你的maui项目中引用 - 在你的"MauiProgram.cs"添加 UseMaterialComponents ```C# using Material.Components.Maui.Extensions; namespace SampleApp; public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder .UseMauiApp() .UseMaterialComponents(new List { //一般情况下, 我们需要6种类型的字体 "xxx-Regular.ttf", "xxx-Italic.ttf", "xxx-Medium.ttf", "xxx-MediumItalic.ttf", "xxx-Bold.ttf", "xxx-BoldItalic.ttf", }); return builder.Build(); } } ``` - 在你的"App.xaml"添加 Material的颜色和风格 ```xaml ``` - 开始吧! ## 可用的控件 > 😄: 准备就绪 🤔: 未经验证 😭: 需要帮助 | control | android | windows | ios&mac | | ---- | ---- | ---- |----| | button | 😄 | 😄 | 🤔 | | IconButton | 😄 | 😄 |🤔| | Card | 😄 | 😄 |🤔| | CheckBox | 😄 | 😄 |🤔| | Chip | 😄 | 😄 |🤔| | ComboBox | 😄 | 😄 |😭| | FAB | 😄 | 😄 |🤔| | Label | 😄 | 😄 |🤔| | NavigationBar | 😄 | 😄 |🤔| | RadioButton | 😄 | 😄 |🤔| | Switch | 😄 | 😄 |🤔| ## 贡献 计划为这个库做贡献?我们很高兴有你的加入 ## 许可证 MIT ## 文档 TODO