All Projects → AvaloniaUtils → Material.avalonia

AvaloniaUtils / Material.avalonia

Licence: mit
Material design in AvaloniaUI

Projects that are alternatives of or similar to Material.avalonia

Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: ✭ 4,916 (+3801.59%)
Mutual labels:  material-design, material, google-material
Material Axure Library
An Axure widget library based on Google Material Design.
Stars: ✭ 490 (+288.89%)
Mutual labels:  material-design, material, google-material
Material Admin
Free Material Admin Template
Stars: ✭ 219 (+73.81%)
Mutual labels:  material-design, material, google-material
Material Design For Bootstrap
Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
Stars: ✭ 9,463 (+7410.32%)
Mutual labels:  material-design, material, google-material
Keepassdx
📱 KeePass implementation for android with material design and deluxe features
Stars: ✭ 1,395 (+1007.14%)
Mutual labels:  material-design, material
Materialdesigndemo
A beautiful app designed with Material Design.
Stars: ✭ 1,391 (+1003.97%)
Mutual labels:  material-design, material
Material Design Icons
Material Design icons by Google
Stars: ✭ 44,551 (+35257.94%)
Mutual labels:  material-design, material
Smart Webcomponents
Web Components & Custom Elements for Professional Web Applications
Stars: ✭ 110 (-12.7%)
Mutual labels:  material-design, material
Cardview
Material Design Cards ? How cool is that !
Stars: ✭ 101 (-19.84%)
Mutual labels:  material-design, material
Materialspinner
Implementation of a Material Spinner for Android with TextInputLayout functionalities
Stars: ✭ 107 (-15.08%)
Mutual labels:  material-design, material
Materialtextfield
A different beautiful Floating Edit Text
Stars: ✭ 1,504 (+1093.65%)
Mutual labels:  material-design, material
Materialanim
基于Android 系统的动画总结
Stars: ✭ 123 (-2.38%)
Mutual labels:  material-design, material
Materialtaptargetprompt
Material Design tap target for Android. https://sjwall.github.io/MaterialTapTargetPrompt/
Stars: ✭ 1,378 (+993.65%)
Mutual labels:  material-design, material
Materialize
Materialize, a CSS Framework based on Material Design
Stars: ✭ 38,630 (+30558.73%)
Mutual labels:  material-design, material
Material Remixer Ios
Remixer for iOS: Live adjustment of app variables.
Stars: ✭ 101 (-19.84%)
Mutual labels:  material-design, material
Smartmaterialspinner
The powerful android spinner library for your application
Stars: ✭ 108 (-14.29%)
Mutual labels:  material-design, material
Vuetify Swipeout
👆 A swipe out example built with Vue CLI 3 + Vuetify + Swiper.
Stars: ✭ 117 (-7.14%)
Mutual labels:  material-design, material
Materialabout
It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate. 🔖
Stars: ✭ 1,511 (+1099.21%)
Mutual labels:  material-design, material
Materialdesigninxamltoolkit
Google's Material Design in XAML & WPF, for C# & VB.Net.
Stars: ✭ 11,603 (+9108.73%)
Mutual labels:  material-design, material
Angular5 Example Shopping App
Angular 5 Example Shopping App + Angular Material + Responsive
Stars: ✭ 120 (-4.76%)
Mutual labels:  material-design, material

material.avalonia

nuget

This repository is a collection of styles to help you customize your Avalonia application theme with Material Design.

A collection of styles can be installed via nuget-package and then include them to the required scope. See the example of App.xaml file:

<Application ...
             xmlns:themes="clr-namespace:Material.Styles.Themes;assembly=Material.Styles"
             ...>
    <Application.Resources>
        <themes:BundledTheme BaseTheme="Light" PrimaryColor="Teal" SecondaryColor="Amber"/>
    </Application.Resources>
    <Application.Styles>
        <StyleInclude Source="avares://Material.Avalonia/Material.Avalonia.Templates.xaml" />
    </Application.Styles>
</Application>

You can configure starting color palette by modifying BundledTheme. We have all material design swatches support. Moreover, you can completely customize your colors and switch color palette at runtime via PaletteHelper class.

Not all controls are already styled, if some are not showing add the following lines to Application.Styles before previous. You should end up with something similar to:

    <Application.Styles>
        <StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
        <StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
        <StyleInclude Source="avares://Material.Avalonia/Material.Avalonia.Templates.xaml" />
    </Application.Styles>

Powered by

portfolio_view
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].