All Projects → BlazorComponent → MASA.Blazor

BlazorComponent / MASA.Blazor

Licence: MIT license
Blazor component library based on Material Design. Support Blazor Server and Blazor WebAssembly.

Programming Languages

HTML
75241 projects
C#
18002 projects
CSS
56736 projects

Projects that are alternatives of or similar to MASA.Blazor

Matblazor
Material Design components for Blazor and Razor Components
Stars: ✭ 2,599 (+454.16%)
Mutual labels:  blazor, blazor-server, blazor-component
smart-blazor
Blazor UI Components & Examples
Stars: ✭ 32 (-93.18%)
Mutual labels:  blazor, blazor-server, blazor-component
AsteroidsWasm
Collection of applications based on a single C# .NET Standard project running in: Blazor Client (WebAssembly), Blazor Server, Electron, WPF, WinForms, Xamarin
Stars: ✭ 136 (-71%)
Mutual labels:  dotnetcore, blazor, blazor-server
EmbeddedBlazorContent
Library to load embedded content files (js and css) from Blazor libraries in server-side Blazor mode.
Stars: ✭ 39 (-91.68%)
Mutual labels:  blazor, blazor-server, blazor-component
BlazorVirtualScrolling
Blazor components for efficiently rendering large lists and data using virtual scrolling
Stars: ✭ 56 (-88.06%)
Mutual labels:  blazor, blazor-server, blazor-component
AutoSaveEditForm
A replacement for the default EditForm component which will auto save a form until it is successfully submitted
Stars: ✭ 44 (-90.62%)
Mutual labels:  blazor, blazor-server, blazor-component
blazor-ui
A collection of examples related to Telerik UI for Blazor Components: https://www.telerik.com/blazor-ui
Stars: ✭ 182 (-61.19%)
Mutual labels:  blazor, blazor-server
TextEditor
Rich text editor for Blazor applications - Uses Quill JS
Stars: ✭ 156 (-66.74%)
Mutual labels:  blazor, blazor-server
Ant Design Blazor
🌈A set of enterprise-class UI components based on Ant Design and Blazor WebAssembly.
Stars: ✭ 3,890 (+729.42%)
Mutual labels:  blazor, blazor-server
BlazorAuthenticationSample
A sample showing some of the ASP.NET Core Blazor authentication features (also some testing...) 🚀
Stars: ✭ 78 (-83.37%)
Mutual labels:  dotnetcore, blazor
MudBlazor.Markdown
Markdown component based on the MudBlazor environment
Stars: ✭ 30 (-93.6%)
Mutual labels:  blazor, blazor-server
Awesome Blazor
Resources for Blazor, a .NET web framework using C#/Razor and HTML that runs in the browser with WebAssembly.
Stars: ✭ 6,063 (+1192.75%)
Mutual labels:  blazor, blazor-component
Chromely
Build HTML Desktop Apps on .NET/.NET Core/.NET 5 using native GUI, HTML5, JavaScript, CSS
Stars: ✭ 2,728 (+481.66%)
Mutual labels:  dotnetcore, blazor
blazor-tour-of-heroes
The Angular Tour of Heroes tutorial, but done using Blazor instead
Stars: ✭ 17 (-96.38%)
Mutual labels:  blazor, blazor-server
BlazorServerWithDocker
Companion code sample for my blog post - Containerising a Blazor Server App
Stars: ✭ 16 (-96.59%)
Mutual labels:  blazor, blazor-server
BlazorMonaco
Blazor component for Microsoft's Monaco Editor which powers Visual Studio Code.
Stars: ✭ 151 (-67.8%)
Mutual labels:  blazor, blazor-component
FlashCards
Learning Blazor By Creating A Flash Cards Application
Stars: ✭ 17 (-96.38%)
Mutual labels:  blazor, blazor-server
MvvmBlazor
A lightweight Blazor Mvvm Library
Stars: ✭ 203 (-56.72%)
Mutual labels:  blazor, blazor-server
BlazorGraphApi
Blazor Server App with Azure AD Authentication, that calls the Microsoft Graph API on-behalf of the signed-in user.
Stars: ✭ 28 (-94.03%)
Mutual labels:  blazor, blazor-server
Blazor.PersianDatePicker
A free JavaScript Jalali (Persian) and Gregorian (Miladi) dual datepicker library for Blazor applications
Stars: ✭ 40 (-91.47%)
Mutual labels:  blazor, blazor-server

MASA Blazor Logo

MASA Blazor

A set of standard basic component libraries based on Material design specifications and BlazorComponent interaction capabilities

MASA.Blazor .NET Nuget Nuget

English| 简体中文

What is MASA Blazor?

Provide a standard basic component library based on Material design specifications and BlazorComponent's interactive capabilities. Provides preset components for standard scenarios such as layout, frame standard, Loading, and global exception handling. Starting from more practical scenarios, to meet the needs of more users and scenarios, and to minimize the time cost of developers. Shorten the development cycle and improve development efficiency. And provide a set of examples of Web solutions - MASA Blazor Pro has a variety of common scenes and preset layouts and other exciting content.

Why choose MASA Blazor?

MASA Blazor is based on the Material design specification, and each component is carefully designed, with modularity, responsiveness and excellent performance. MASA Blazor is regularly maintained and upgraded by a professional full-time technical team, efficient response speed, diversified solutions, long-term support, and enterprise-level support. At present, it has been used in several well-known companies, and the follow-up MASA Stack product series will continue to be used. In addition to ensuring the quality of the project, it can also continue to add new components and functions. In addition to providing developers with many mid- and Taiwan-based open source projects, MASA Stack, one of its most basic components, MASA Blazor, also hopes to be the most practical component library.

Feature

  • Rich components: Contains the basic components of Vuetify 1:1 restoration, as well as many practical preset components and deep integration functions of .Net, including three linkages of Url, breadcrumbs, navigation, advanced search, i18n, etc.
  • UI design language: modern design style, excellent UI multi-end experience design
  • Professional example: MASA Blazor Pro provides preset layouts for a variety of common scenarios
  • Easy to get started: rich and detailed getting started documents, free video tutorials (in production)
  • Active community encouragement: users participate in real-time interaction, make contributions to join us, and build the most open open source community
  • Long-term support: full-time team maintenance, long-term support, and enterprise-level support
  • Choice of well-known companies: This technology framework has been chosen by many well-known companies, and the MASA Stack product line will continue to be used in the future, and new functions will continue to be added

Stats

Alt

Getting started

Development environment setup

Install Template

dotnet new --install Masa.Template

Create Project

  • Blazor Server
dotnet new masabp -o Masa.Test
  • Blazor WebAssembly
dotnet new masabp --mode Wasm -o Masa.TestWasm
  • Blazor RCL
dotnet new masabp --mode ServerAndWasm -o Masa.TestRcl

Go to the Server project directory

cd Masa.Test

Run

dotnet run

Existing project

  • Install Nuget package
dotnet add package Masa.Blazor
  • Add Masa.Blazor related services to Startup.ConfigureServices:
services.AddMasaBlazor();
  • Introduce styles, fonts, scripts in wwwroot/index.html(WebAssembly) or Pages/_Host.cshtml(Server):
<html lang="en">
    <head>
        <!--Style-->
        <link href="_content/Masa.Blazor/css/masa-blazor.min.css" rel="stylesheet">
        <!--Font-->
        <link href="https://cdn.jsdelivr.net/npm/@("@mdi")/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
        <link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
    </head>
    <body>
        <!--Script (try to put it at the end of the body)-->
        <script src="_content/BlazorComponent/js/blazor-component.js"></script>
    </body>
</html>
  • Add the namespace to the _Imports.razor file:
@using Masa.Blazor
@using BlazorComponent
  • Modify the Shared/MainLayout.razor file to make MApp the root element:
<MApp>
    //Other layout content
</MApp>

See more :https://blazor.masastack.com/

Local development

Development environment setup

Clone code

git clone --recursive https://github.com/BlazorComponent/MASA.Blazor.git
cd MASA.Blazor
git submodule foreach git checkout main

Run doc server

cd Doc/Masa.Blazor.Doc.Server
dotnet run

Visit

Recommended use chrome or edge to visit http://localhost:5000/

Related resources

Related projects

Supported browsers

chromefirefoxedgeieSafarioper

Mobile devices

iosAndriod

Chrome Firefox Safari Microsoft Edge
iOS Supported Supported Supported Supported
Android Supported Supported N/A Supported

Desktop devices

macOSlinuxwindows

Chrome Firefox Safari Opera Microsoft Edge Internet Explorer
Mac Supported Supported Supported Supported N/A N/A
Linux Supported Supported N/A N/A N/A N/A
Windows Supported Supported Not supported Supported Supported Supported, IE11+

Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation

How to contribute

  1. Fork & Clone
  2. Create Feature_xxx branch
  3. Commit with commit message, like feat:add MButton
  4. Create Pull Request

Contributors

Thanks to all the friends who have contributed to this project.

Interactive

QQ group WX public account WX Customer Service
masa.blazor-qq masa.blazor-weixin masa.blazor-weixin

Development team

The Digital Flash technical team is an efficient, stable and innovative team. The team adheres to the original intention of enriching the Blazor ecosystem, and it is the pursuit of the Digital Flash technical team to continue to work hard to bring a better experience to the developers. Thank you for your support and use.

Code of conduct

This project adopts the code of conduct defined in the "Contributors Convention" to clarify the expected behavior of our community. For more information, see MASA Stack Community Code of Conduct.

License

Masa.Blazor

Copyright (c) 2021-present Masa.Blazor

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].