Uno.Material.WinUI 2.0.0-dev.189

Prefix Reserved
This is a prerelease version of Uno.Material.WinUI.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Uno.Material.WinUI --version 2.0.0-dev.189
                    
NuGet\Install-Package Uno.Material.WinUI -Version 2.0.0-dev.189
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Uno.Material.WinUI" Version="2.0.0-dev.189" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Uno.Material.WinUI" Version="2.0.0-dev.189" />
                    
Directory.Packages.props
<PackageReference Include="Uno.Material.WinUI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Uno.Material.WinUI --version 2.0.0-dev.189
                    
#r "nuget: Uno.Material.WinUI, 2.0.0-dev.189"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Uno.Material.WinUI@2.0.0-dev.189
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Uno.Material.WinUI&version=2.0.0-dev.189&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Uno.Material.WinUI&version=2.0.0-dev.189&prerelease
                    
Install as a Cake Tool

Uno Material

This library is designed to help you use the material design system. It includes :

  • Color system for both Light and Dark theme
  • Styles for existing WinUI controls like Buttons, TextBox, etc.

Quickly visualize all the available controls through this zeplin link

Platform support:

  • WinUI / UWP
  • iOS
  • macOS
  • Android
  • WebAssembly
  • Linux (Skia.Gtk)

Uno Material

Uno Material Design Guideline is a resource for designers and software developers that combines Material and Uno design guidance in single document. It is an easy way to kickstart design and implementation of cross-platform experiences with unified Material design system look and feel, using Sketch and Uno Platform.

Download the Uno Platform Design Guidelines sketch file to get started.

It includes:

  • Uno-Material components
  • Uno type resource names
  • Uno asset naming and export guidance

License

Getting Started

  1. Install the nuget package Uno.Material.
  2. Unless you want our default color palette (inspired by our Uno logo), you'll want to override the following color resources in you application. We suggest creating a ColorPaletteOverride.xaml ResourceDictionary. For more information on the color system, consult this page for all the official documentation and tools to help you create your own palette. Here is what ColorPaletteOverride.xaml would contain if you want both light and dark theme.
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

	
	<ResourceDictionary.ThemeDictionaries>
		
		<ResourceDictionary x:Key="Light">
			<Color x:Key="MaterialPrimaryColor">#5B4CF5</Color>
			<Color x:Key="MaterialPrimaryVariantDarkColor">#353FE5</Color>
			<Color x:Key="MaterialPrimaryVariantLightColor">#B6A8FB</Color>
			<Color x:Key="MaterialSecondaryColor">#67E5AD</Color>
			<Color x:Key="MaterialSecondaryVariantDarkColor">#2BB27E</Color>
			<Color x:Key="MaterialSecondaryVariantLightColor">#9CFFDF</Color>
			<Color x:Key="MaterialBackgroundColor">#FFFFFF</Color>
			<Color x:Key="MaterialSurfaceColor">#FFFFFF</Color>
			<Color x:Key="MaterialErrorColor">#F85977</Color>
			<Color x:Key="MaterialOnPrimaryColor">#FFFFFF</Color>
			<Color x:Key="MaterialOnSecondaryColor">#000000</Color>
			<Color x:Key="MaterialOnBackgroundColor">#000000</Color>
			<Color x:Key="MaterialOnSurfaceColor">#000000</Color>
			<Color x:Key="MaterialOnErrorColor">#000000</Color>
			<Color x:Key="MaterialOverlayColor">#51000000</Color>
		</ResourceDictionary>

		
		<ResourceDictionary x:Key="Dark">
			<Color x:Key="MaterialPrimaryColor">#B6A8FB</Color>
			<Color x:Key="MaterialPrimaryVariantDarkColor">#353FE5</Color>
			<Color x:Key="MaterialPrimaryVariantLightColor">#D4CBFC</Color>
			<Color x:Key="MaterialSecondaryColor">#67E5AD</Color>
			<Color x:Key="MaterialSecondaryVariantDarkColor">#2BB27E</Color>
			<Color x:Key="MaterialSecondaryVariantLightColor">#9CFFDF</Color>
			<Color x:Key="MaterialBackgroundColor">#121212</Color>
			<Color x:Key="MaterialSurfaceColor">#121212</Color>
			<Color x:Key="MaterialErrorColor">#CF6679</Color>
			<Color x:Key="MaterialOnPrimaryColor">#000000</Color>
			<Color x:Key="MaterialOnSecondaryColor">#000000</Color>
			<Color x:Key="MaterialOnBackgroundColor">#FFFFFF</Color>
			<Color x:Key="MaterialOnSurfaceColor">#DEFFFFFF</Color>
			<Color x:Key="MaterialOnErrorColor">#000000</Color>
			<Color x:Key="MaterialOverlayColor">#51FFFFFF</Color>
		</ResourceDictionary>
	</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>

  1. Initialize the material resources. The order in which the different resources are loaded is important. Add this to App.xaml
<MaterialColors xmlns="using:Uno.Material"
				OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
<MaterialResources xmlns="using:Uno.Material" />
  1. (Optional) The material ProgressBar is built on top for the WinUI ProgressBar so make sure you include the appropriate resources in your App.xaml
	<Application.Resources>
		<ResourceDictionary>
			<ResourceDictionary.MergedDictionaries>
				
				<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls"/>

				<MaterialColors xmlns="using:Uno.Material"
								OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
				<MaterialResources xmlns="using:Uno.Material" />
				
				
			</ResourceDictionary.MergedDictionaries>
		</ResourceDictionary>
	</Application.Resources>
  1. Start using the styles in your pages!
  • To use styles, just find the name of the style from our documentation or sample app and use it like this
<Button Content="CONTAINED"
	Style="{StaticResource MaterialContainedButtonStyle}"/>
  1. In order to display the appropriate font with the material styles on Webassembly, make sure that the Roboto font is defined on font.css located at [YourProject].Wasm/WasmCSS. This make sure that the font is loaded correctly Related Issue. It should look like this:
@font-face {
  font-family: "Symbols";
  /* winjs-symbols.woff2: https://github.com/Microsoft/fonts/tree/master/Symbols */
  src: url(data:application/x-font-woff;charset=utf-8;base64,[...]);
}

@font-face {
  font-family: "Roboto";
  src: url(data:application/x-font-woff;charset=utf-8;base64,[...]);
}

body::after {
	font-family: 'Roboto';
	background: transparent;
	content: "";
	opacity: 0;
	pointer-events: none;
	position: absolute;
}
  1. (Optional) Set material styles as the default for your whole application.

     <MaterialResources xmlns="using:Uno.Material" WithImplicitStyles="True" />
    

    Alternatively, if you wish to only have the default styles for certain controls, simply add the implicit styles to your App.xaml:

     <Application.Resources>
     	<ResourceDictionary>
     		<ResourceDictionary.MergedDictionaries>
     			<MaterialColors xmlns="using:Uno.Material" />
     			<MaterialResources xmlns="using:Uno.Material" />
    
    
     			<ResourceDictionary>
     				<Style TargetType="Button" BasedOn="{StaticResource MaterialContainedButtonStyle}"/>
     				<Style TargetType="TextBox" BasedOn="{StaticResource MaterialFilledTextBoxStyle}"/>
     			</ResourceDictionary>
     		</ResourceDictionary.MergedDictionaries>
     	</ResourceDictionary>
     </Application.Resources>
    

    Learn more about implicit styles from the Microsoft documentation here

  2. (Optional) Per-control customization. Just like WinUI, we documented a set of control-specific resources you can override to further customize our controls. For example, if you would like change the CornerRadius of all the Buttons using our material styles, you could simply override the ButtonBorderRadius value in your resources (in App.xaml would be the simplest way to put the following code)

<CornerRadius x:Key="ButtonBorderRadius">4</CornerRadius>
  1. (Optional) If you are using our ToggleSwitches to get proper Material styling in Android there is some extra code to be added to the Android Project Head. (Click the component name to see how to set them up)

  2. (Optional) If you are using our DatePickers, and TimePickers to get proper Material styling in Android there is some extra code to be added to the Android Project Head. (Click the component name to see how to set them up)

Features

Styles for basic controls

Controls StyleNames
Button MaterialContainedButtonStyle <br> MaterialOutlinedButtonStyle <br> MaterialTextButtonStyle <br> MaterialButtonIconStyle <br> MaterialContainedSecondaryButtonStyle <br> MaterialOutlinedSecondaryButtonStyle<br> MaterialTextSecondaryButtonStyle <br> MaterialButtonIconStyle
Button (FAB) <br> Floating Action Button MaterialFabStyle <br> MaterialSmallFabStyle <br> MaterialSecondaryFabStyle <br> MaterialPrimaryInvertedFabStyle <br> MaterialSecondaryInvertedFabStyle
CalendarDatePicker MaterialCalendarDatePickerStyle
CalendarView MaterialCalendarViewStyle
CheckBox MaterialCheckBoxStyle <br> MaterialSecondaryCheckBoxStyle
ComboBox MaterialComboBoxStyle <br> MaterialComboBoxItemStyle
CommandBar MaterialCommandBarStyle <br> MaterialAppBarButton
DatePicker MaterialDatePickerStyle
Flyout MaterialFlyoutPresenterStyle <br> MaterialContentFlyoutPresenterStyle
MenuFlyout MaterialMenuFMaterialMUXNoCompactMenuNavigationViewStylelyoutPresenterStyle <br> MaterialMenuFlyoutItemStyle <br> MaterialToggleMenuFlyoutItemStyle <br> MaterialMenuFlyoutSubItemStyle <br> MaterialMenuFlyoutSeparatorStyle
HyperlinkButton MaterialHyperlinkButtonStyle <br> MaterialSecondaryHyperlinkButtonStyle
muxc:InfoBar MaterialInfoBarStyle
ListView MaterialListViewStyle <br> MaterialListViewDetailsStyle <br> MaterialListViewItemStyle
NavigationView MaterialWUXNavigationViewStyle <br> MaterialWUXNoCompactMenuNavigationViewStyle <br> MaterialWUXNavigationViewItemStyle
muxc:NavigationView MaterialNavigationViewStyle <br> MaterialNavigationViewItemStyle
PasswordBox MaterialFilledPasswordBoxStyle <br> MaterialOutlinedPasswordBoxStyle
muxc:ProgressBar MaterialProgressBarStyle <br> MaterialSecondaryProgressBarStyle
muxc:ProgressRing MaterialProgressRingStyle <br> MaterialSecondaryProgressRingStyle
RadioButton MaterialRadioButtonStyle <br> MaterialSecondaryRadioButtonStyle
muxc:RatingControl MaterialRatingControlStyle <br> MaterialSecondaryRatingControlStyle
muxc:Slider MaterialSliderStyle <br> MaterialSecondarySliderStyle
TextBlock MaterialHeadline1 <br> MaterialHeadline2 <br> MaterialHeadline3 <br> MaterialHeadline4 <br> MaterialHeadline5 <br> MaterialHeadline6 <br> MaterialSubtitle1 <br> MaterialSubtitle2 <br> MaterialBody1 <br> MaterialBody2 <br> MaterialButtonText <br> MaterialCaption <br> MaterialOverline
TextBox MaterialFilledTextBoxStyle <br> MaterialOutlinedTextBoxStyle
ToggleButton MaterialTextToggleButtonStyle <br> MaterialToggleButtonIconStyle
ToggleSwitch MaterialToggleSwitchStyle <br> MaterialSecondaryToggleSwitchStyle

Controls Setup (Specialized)

ToggleSwitch

If you are using our ToggleSwitches to get the proper native colors on android their is some modification needed. The reasoning for this is to apply the native android shadowing on the off value of the ToggleSwitch, and proper focus shadow colors when ToggleSwitches are clicked

  1. From your Android project head go to YourProject.Droid/Resources/values/Styles.xml Inside your AppTheme add two item's "colorControlActivated" (the on color for your ToggleSwitches thumb) and "colorSwitchThumbNormal" (the off color for your ToggleSwitches thumb) you may add your colors here directly, for example #ffffff, or by files (see our example code below)
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.Light">

		
		<item name="colorControlActivated">@color/MaterialPrimaryColor</item>
		<item name="colorSwitchThumbNormal">@color/MaterialSurfaceVariantColor</item>
	</style>
</resources>

  1. (Optional) If your application uses Light/Dark color palettes. 2.1 Inside the Styles.xml file change the AppTheme's parent to Theme.Compat.DayNight
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.DayNight">

		
		<item name="colorControlActivated">@color/MaterialPrimaryColor</item>
		<item name="colorSwitchThumbNormal">@color/MaterialSurfaceVariantColor</item>
	</style>
</resources>

2.2 From your Android project head go to YourProject.Droid/Resources/values create a file called "colors.xml", inside include your "Light" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#5B4CF5</color>
	
	<color name="MaterialSurfaceVariantColor">#FFFFFF</color>
</resources>

2.3 From your Android project head go to YourProject.Droid/Resources create a folder called "values-night", inside the folder add a file called "colors.xml", and inside the file include your "Dark" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#B6A8FB</color>
	
	 <color name="MaterialSurfaceVariantColor">#808080</color>
</resources>

2.3 (Optional) If you have changed the material color palette for your application (2.) then there are two more colors that must be overridden for android native ToggleSwitch disabled colors to be properly applied. Colors are named PrimaryVariantDisabledThumbColor and SurfaceVariantLightColor, they can be overridden in your colors.xaml file. PrimaryVariantDisabledThumbColor is a non-transparent version of PrimaryDisabled color ("Light") in "Light" palette, and a non-transparent version of PrimaryMedium color ("Dark") in "Dark" palette. SurfaceVariantLightColor is the Surface color however in "Light" Palette is an off white color to be visible on light backgrounds.


	<ResourceDictionary.ThemeDictionaries>

		
		<ResourceDictionary x:Key="Light">
			
			<Color x:Key="PrimaryVariantDisabledThumbColor">#E9E5FA</Color>
			
			<Color x:Key="SurfaceVariantLightColor">#F7F7F7</Color>
		</ResourceDictionary>

		
		<ResourceDictionary x:Key="Dark">
			
			<Color x:Key="PrimaryVariantDisabledThumbColor">#57507C</Color>
			<Color x:Key="SurfaceVariantLightColor">#121212</Color>
		</ResourceDictionary>
	</ResourceDictionary.ThemeDictionaries>

DatePickers and TimePickers

If your application uses DatePickers and/or TimePickers (these are native components). To apply your material colors to these android components, do the following (this will affect every DatePicker/TimePicker in the application).

  1. From your Android project head go to YourProject.Droid/Resources/values/Styles.xml Inside your AppTheme add two item's "datePickerDialogTheme" (the style for your DatePicker) and "timePickerDialogTheme" (the style for your TimePicker), and a new Style with the MaterialPrimary Color as AccentColor (see our example code below)
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.Light">

		
		<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
		<item name="android:timePickerDialogTheme">@style/AppCompatDialogStyle</item>
	</style>

	<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
		<item name="colorAccent">@color/MaterialPrimaryColor</item>
	</style>
</resources>

  1. (Optional) If your application uses Light/Dark color palettes. 2.1 Inside the Styles.xml file change the AppTheme's parent of both styles to Theme.Compat.DayNight
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.DayNight">

		
		<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
		<item name="android:timePickerDialogTheme">@style/AppCompatDialogStyle</item>
	</style>

	<style name="AppCompatDialogStyle" parent="Theme.AppCompat.DayNight.Dialog">
		<item name="colorAccent">@color/MaterialPrimaryColor</item>
	</style>
</resources>

2.2 From your Android project head go to YourProject.Droid/Resources/values create a file called "colors.xml", inside include your "Light" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#5B4CF5</color>
</resources>

2.3 From your Android project head go to YourProject.Droid/Resources create a folder called "values-night", inside the folder add a file called "colors.xml", and inside the file include your "Dark" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#B6A8FB</color>
</resources>

Migration

1.0 to 1.1

  • Color Palette Override

    Now you have the possibility to override the Material color palette with your own color palette. See the #Getting Started section for more details.

      <MaterialColors xmlns="using:Uno.Material"
      				OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
    
  • Namespace breaking changes

    BREAKING CHANGE: Everything (controls, extensions, converters, ...), previously under Uno.Material.* or Uno.Cupertino.*, has now been moved under Uno.Material or Uno.Cupertino.

      xmlns:um="using:Uno.Material"
      xmlns:uc="using:Uno.Cupertino"
    
  • Some controls have been moved to Uno.Toolkit.UI

    List of the controls and styles that have been moved to Uno.Toolkit.UI:

    Controls StyleNames
    Card MaterialOutlinedCardStyle <br> MaterialElevatedCardStyle <br> MaterialAvatarOutlinedCardStyle <br> MaterialAvatarElevatedCardStyle <br> MaterialSmallMediaOutlinedCardStyle <br> MaterialSmallMediaElevatedCardStyle
    Chip MaterialFilledInputChipStyle<br>MaterialFilledChoiceChipStyle<br>MaterialFilledFilterChipStyle<br>MaterialFilledActionChipStyle<br>MaterialOutlinedInputChipStyle<br>MaterialOutlinedChoiceChipStyle<br>MaterialOutlinedFilterChipStyle<br>MaterialOutlinedActionChipStyle
    ChipGroup MaterialFilledInputChipGroupStyle<br>MaterialFilledChoiceChipGroupStyle<br>MaterialFilledFilterChipGroupStyle<br>MaterialFilledActionChipGroupStyle<br>MaterialOutlinedInputChipGroupStyle<br>MaterialOutlinedChoiceChipGroupStyle<br>MaterialOutlinedFilterChipGroupStyle<br>MaterialOutlinedActionChipGroupStyle
    Divider MaterialDividerStyle
  • Some controls have been removed

    List of the controls and styles that have been removed from Uno.Themes:

    Controls StyleNames
    BottomNavigationBar MaterialBottomNavigationBarStyle
    ExpandingBottomSheet MaterialExpandingBottomSheetStyle
    ModalStandardBottomSheet MaterialModalStandardBottomSheetStyle
    StandardBottomSheet MaterialStandardBottomSheetStyle
    SnackBar MaterialSnackBarStyle
    • BottomNavigationBar was replaced by TabBar in Uno.Toolkit.UI, but it is not an exact 1:1 replacement. In the mean time, if you really need the badge and/or other customizability, two options are available:

      Import locally the old sources (control + style) from Uno.Themes;

      OR

      Copy the MaterialBottomTabBarItemStyle from Uno.Toolkit.UI, and modify the style to suit your needs. (Note that there are two copies of the style, one for iOS and Android and one for rest of the platforms: UWP, Skia, WASM, etc...);

    • For StandardBottomSheet and ModalStandardBottomSheet It's replaced by using a Flyout and the MaterialFlyoutPresenterStyle that is allowing you to have a bottom sheet.

      For example:

        <Flyout Placement="Full"
              LightDismissOverlayMode="On"
              FlyoutPresenterStyle="{StaticResource MaterialFlyoutPresenterStyle}">
        	<Grid MaxHeight="370"
        		  VerticalAlignment="Bottom">
        		...Your bottom sheet content...
        	</Grid>
        </Flyout>
      
    • For SnackBar: so far no replacement for SnackBar has been added to Uno.Toolkit.UI, but it's planned to add one in a future version.

Changelog

Please consult the CHANGELOG for more information about version history.

License

This project is licensed under the Apache 2.0 license - see the LICENSE file for details.

Contributing

Please read CONTRIBUTING.md for details on the process for contributing to this project.

Be mindful of our Code of Conduct.

Acknowledgments

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net5.0-windows10.0.18362 is compatible.  net6.0 was computed.  net6.0-android was computed.  net6.0-android31.0 is compatible.  net6.0-ios was computed.  net6.0-ios15.2 is compatible.  net6.0-maccatalyst was computed.  net6.0-maccatalyst15.2 is compatible.  net6.0-macos was computed.  net6.0-macos12.1 is compatible.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid11.0 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed.  xamarinmac20 is compatible. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Uno.Material.WinUI:

Package Downloads
Uno.Toolkit.WinUI.Material

A set of controls for Uno Platform, UWP and WinUI

Uno.Material.WinUI.Markup

A set of C# for Markup helpers for Uno.Material.WinUI

Sample.Mobile

Package Description

Sample.Windows

Package Description

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on Uno.Material.WinUI:

Repository Stars
PrismLibrary/Prism
Prism is a framework for building loosely coupled, maintainable, and testable XAML applications in WPF, Xamarin Forms, and Uno / Win UI Applications..
unoplatform/Uno.Samples
A collection of code samples for the Uno Platform
lindexi/lindexi_gd
博客用到的代码
dotnet-campus/dotnetCampus.Ipc
本机内多进程通讯库
unoplatform/uno.toolkit.ui
A set of custom controls for the WinUI and the Uno Platform not offered out of the box by WinUI, such as Card, TabBar, NavigationBar, etc.
Version Downloads Last Updated
6.1.0-dev.4 0 12/2/2025
6.1.0-dev.2 9,235 11/6/2025
6.1.0-dev.1 136 11/6/2025
6.0.2 5,660 11/11/2025
6.0.0-dev.1 140 11/6/2025
5.8.0-dev.9 4,060 10/30/2025
5.8.0-dev.7 3,288 10/21/2025
5.8.0-dev.6 5,839 9/29/2025
5.8.0-dev.4 724 9/25/2025
5.8.0-dev.3 1,054 9/23/2025
5.8.0-dev.2 14,417 8/7/2025
5.8.0-dev.1 521 8/7/2025
5.7.3 14,165 8/22/2025
5.7.0-dev.4 4,195 7/23/2025
5.7.0-dev.3 3,486 7/7/2025
5.7.0-dev.1 687 7/3/2025
5.6.3 3,837 7/17/2025
5.6.0-dev.6 8,654 5/20/2025
5.6.0-dev.5 4,649 5/2/2025
5.6.0-dev.4 437 5/2/2025
5.6.0-dev.3 258 5/2/2025
5.6.0-dev.2 1,656 4/28/2025
5.6.0-dev.1 2,228 4/21/2025
5.5.4 10,093 5/29/2025
5.5.1 8,552 5/8/2025
5.5.0-dev.97 179 4/21/2025
5.5.0-dev.96 1,610 4/18/2025
5.5.0-dev.95 8,219 4/1/2025
5.5.0-dev.93 10,728 2/11/2025
5.5.0-dev.91.gd05e0e2e94 321 2/10/2025
5.5.0-dev.89.gf0dd9a65ba 7,312 1/8/2025
5.4.1 3,636 4/11/2025
5.4.0 17,078 1/28/2025
5.4.0-dev.21 5,551 12/16/2024
5.4.0-dev.20 81 12/16/2024
5.4.0-dev.19 8,577 11/14/2024
5.4.0-dev.18 4,897 10/31/2024
5.4.0-dev.12 131 10/31/2024
5.4.0-dev.10 471 10/30/2024
5.4.0-dev.6 445 10/28/2024
5.4.0-dev.2 3,552 10/17/2024
5.3.1 18,236 10/31/2024
5.3.0-dev.8 8,072 9/19/2024
5.3.0-dev.6 500 9/19/2024
5.3.0-dev.5 102 9/19/2024
5.3.0-dev.4 2,847 9/16/2024
5.3.0-dev.3 1,064 9/11/2024
5.3.0-dev.1 135 9/11/2024
5.2.5 5,559 9/25/2024
5.2.0-dev.23 394 9/9/2024
5.2.0-dev.22 1,633 9/4/2024
5.2.0-dev.21 98 9/4/2024
5.2.0-dev.20 196 9/3/2024
5.2.0-dev.17 1,894 8/23/2024
5.2.0-dev.16 1,420 8/21/2024
5.2.0-dev.15 3,267 8/9/2024
5.2.0-dev.14 1,835 7/31/2024
5.2.0-dev.13 3,508 7/16/2024
5.2.0-dev.11 593 7/15/2024
5.2.0-dev.9 4,658 6/25/2024
5.2.0-dev.7 1,202 6/20/2024
5.2.0-dev.5 93 6/20/2024
5.2.0-dev.3 126 6/19/2024
5.2.0-dev.2 105 6/18/2024
5.2.0-dev.1 899 6/17/2024
5.1.9 1,148 9/11/2024
5.1.7 7,727 7/22/2024
5.1.6 1,204 7/22/2024
5.1.0-dev.36 4,818 6/4/2024
5.1.0-dev.35 523 6/4/2024
5.1.0-dev.33 996 5/30/2024
5.1.0-dev.31 547 5/23/2024
5.1.0-dev.29 103 5/23/2024
5.1.0-dev.26 537 5/13/2024
5.1.0-dev.25 91 5/13/2024
5.1.0-dev.24 181 5/11/2024
5.1.0-dev.23 208 5/9/2024
5.1.0-dev.19 3,647 4/23/2024
5.1.0-dev.18 1,594 4/16/2024
5.1.0-dev.16 113 4/16/2024
5.1.0-dev.13 178 4/13/2024
5.1.0-dev.12 113 4/12/2024
5.1.0-dev.11 274 4/11/2024
5.1.0-dev.10 80 4/11/2024
5.1.0-dev.8 244 4/8/2024
5.0.13 71,254 4/22/2024
5.0.0-dev.86 291 4/3/2024
4.2.0-dev.31 162 4/3/2024
4.2.0-dev.30 1,640 3/28/2024
4.2.0-dev.26 307 3/25/2024
4.2.0-dev.25 283 3/22/2024
4.2.0-dev.24 126 3/22/2024
4.2.0-dev.19 3,579 3/2/2024
4.2.0-dev.18 1,571 2/25/2024
4.2.0-dev.17 26,040 2/13/2024
4.2.0-dev.12 598 2/7/2024
4.2.0-dev.11 667 2/6/2024
4.2.0-dev.10 265 2/5/2024
4.2.0-dev.9 974 2/1/2024
4.2.0-dev.6 303 1/31/2024
4.2.0-dev.5 167 1/30/2024
4.2.0-dev.2 152 1/29/2024
4.2.0-dev.1 82 1/29/2024
4.1.1 21,603 2/2/2024
4.1.0 3,360 1/30/2024
4.1.0-dev.52 524 1/24/2024
4.1.0-dev.50 119 1/24/2024
4.1.0-dev.49 1,379 1/12/2024
4.1.0-dev.45 2,726 12/20/2023
4.1.0-dev.43 127 12/20/2023
4.1.0-dev.39 1,359 12/13/2023
4.1.0-dev.35 843 12/6/2023
4.1.0-dev.33 329 12/5/2023
4.1.0-dev.32 203 12/4/2023
4.1.0-dev.31 677 12/1/2023
4.1.0-dev.30 261 11/29/2023
4.1.0-dev.29 654 11/21/2023
4.1.0-dev.28 310 11/18/2023
4.1.0-dev.27 743 11/17/2023
4.1.0-dev.26 154 11/16/2023
4.1.0-dev.25 132 11/16/2023
4.1.0-dev.24 1,589 11/13/2023
4.1.0-dev.19 882 11/6/2023
4.1.0-dev.17 125 11/6/2023
4.1.0-dev.15 100 11/6/2023
4.1.0-dev.8 357 11/3/2023
4.1.0-dev.7 116 11/3/2023
4.1.0-dev.1 373 10/30/2023
4.0.6 15,076 11/7/2023
4.0.4 8,337 11/1/2023
4.0.0-dev.188 348 10/27/2023
4.0.0-dev.187 145 10/27/2023
4.0.0-dev.186 234 10/26/2023
4.0.0-dev.184 141 10/26/2023
4.0.0-dev.183 166 10/26/2023
4.0.0-dev.182 797 10/24/2023
4.0.0-dev.180 2,053 10/13/2023
4.0.0-dev.178 396 10/10/2023
4.0.0-dev.175 221 10/10/2023
4.0.0-dev.174 485 10/6/2023
4.0.0-dev.167 258 10/4/2023
4.0.0-dev.166 106 10/4/2023
4.0.0-dev.164 185 10/3/2023
4.0.0-dev.162 1,088 10/2/2023
4.0.0-dev.161 266 9/30/2023
4.0.0-dev.160 196 9/29/2023
4.0.0-dev.159 122 9/29/2023
4.0.0-dev.157 117 9/29/2023
4.0.0-dev.156 210 9/29/2023
4.0.0-dev.152 114 9/28/2023
4.0.0-dev.151 135 9/28/2023
4.0.0-dev.150 108 9/28/2023
4.0.0-dev.149 140 9/28/2023
4.0.0-dev.148 132 9/28/2023
4.0.0-dev.147 117 9/28/2023
4.0.0-dev.146 438 9/26/2023
4.0.0-dev.140 414 9/22/2023
4.0.0-dev.139 261 9/20/2023
4.0.0-dev.126 4,325 8/30/2023
4.0.0-dev.124 215 8/30/2023
3.1.0-dev.96 5,551 8/31/2023
3.1.0-dev.94 209 8/30/2023
3.0.40 24,668 9/6/2023
2.8.0-dev.6 892 8/30/2023
2.8.0-dev.2 303 8/29/2023
2.7.0-dev.104 934 8/16/2023
2.7.0-dev.102 938 8/16/2023
2.7.0-dev.99 177 8/15/2023
2.7.0-dev.97 417 8/11/2023
2.7.0-dev.95 182 8/11/2023
2.7.0-dev.89 197 8/10/2023
2.7.0-dev.88 400 8/7/2023
2.7.0-dev.86 157 8/7/2023
2.7.0-dev.84 166 8/7/2023
2.7.0-dev.81 189 8/7/2023
2.7.0-dev.61 227 8/7/2023
2.7.0-dev.59 301 8/4/2023
2.7.0-dev.56 209 8/3/2023
2.7.0-dev.54 194 8/3/2023
2.7.0-dev.53 309 8/1/2023
2.7.0-dev.47 168 8/1/2023
2.7.0-dev.45 185 8/1/2023
2.7.0-dev.41 267 7/31/2023
2.7.0-dev.39 648 7/26/2023
2.7.0-dev.37 172 7/26/2023
2.7.0-dev.35 175 7/25/2023
2.7.0-dev.33 175 7/24/2023
2.7.0-dev.31 162 7/24/2023
2.7.0-dev.29 176 7/24/2023
2.7.0-dev.27 206 7/24/2023
2.7.0-dev.25 199 7/14/2023
2.7.0-dev.23 192 7/12/2023
2.7.0-dev.21 185 6/29/2023
2.7.0-dev.20 190 6/27/2023
2.7.0-dev.19 164 6/27/2023
2.7.0-dev.18 436 6/19/2023
2.7.0-dev.17 266 6/16/2023
2.7.0-dev.16 274 6/14/2023
2.7.0-dev.15 212 6/13/2023
2.7.0-dev.13 190 6/13/2023
2.7.0-dev.12 235 6/12/2023
2.7.0-dev.11 400 6/7/2023
2.7.0-dev.10 187 6/7/2023
2.7.0-dev.8 168 6/7/2023
2.7.0-dev.7 268 6/5/2023
2.7.0-dev.5 278 6/2/2023
2.7.0-dev.2 509 5/30/2023
2.7.0-dev.1 177 5/30/2023
2.6.1 17,711 6/7/2023
2.6.0 4,453 6/5/2023
2.6.0-dev.25 1,514 5/28/2023
2.6.0-dev.24 231 5/25/2023
2.6.0-dev.21 177 5/25/2023
2.6.0-dev.19 276 5/16/2023
2.6.0-dev.17 3,144 5/4/2023
2.6.0-dev.14 1,854 3/28/2023
2.6.0-dev.5 244 3/16/2023
2.6.0-dev.2 317 3/13/2023
2.5.3 23,505 3/16/2023
2.5.2 715 3/16/2023
2.5.0-dev.44 265 3/10/2023
2.5.0-dev.43 1,219 3/9/2023
2.5.0-dev.41 281 3/8/2023
2.5.0-dev.40 380 3/4/2023
2.5.0-dev.39 250 3/2/2023
2.5.0-dev.38 259 2/28/2023
2.5.0-dev.37 3,997 2/23/2023
2.5.0-dev.34 284 2/22/2023
2.5.0-dev.31 849 2/17/2023
2.5.0-dev.26 334 2/16/2023
2.5.0-dev.20 216 2/15/2023
2.5.0-dev.19 757 2/8/2023
2.5.0-dev.15 1,252 1/23/2023
2.5.0-dev.14 1,347 1/13/2023
2.5.0-dev.10 226 1/12/2023
2.5.0-dev.6 1,662 12/31/2022
2.5.0-dev.3 219 12/23/2022
2.5.0-dev.1 202 12/22/2022
2.4.1 9,339 12/13/2022
2.4.0-dev.68 313 11/24/2022
2.4.0-dev.66 194 11/23/2022
2.4.0-dev.64 428 11/17/2022
2.4.0-dev.62 276 11/7/2022
2.4.0-dev.60 205 11/3/2022
2.4.0-dev.59 209 11/3/2022
2.4.0-dev.57 1,620 11/3/2022
2.4.0-dev.53 189 11/2/2022
2.4.0-dev.46 222 11/1/2022
2.4.0-dev.42 501 10/27/2022
2.4.0-dev.40 199 10/27/2022
2.4.0-dev.38 281 10/20/2022
2.4.0-dev.33 205 10/6/2022
2.4.0-dev.31 197 9/30/2022
2.4.0-dev.29 196 9/30/2022
2.4.0-dev.26 209 9/29/2022
2.4.0-dev.24 199 9/29/2022
2.4.0-dev.19 233 9/22/2022
2.4.0-dev.17 335 9/21/2022
2.4.0-dev.13 1,028 9/15/2022
2.4.0-dev.11 250 9/14/2022
2.4.0-dev.7 266 9/14/2022
2.3.0 6,516 9/12/2022
2.3.0-dev.20 422 9/9/2022
2.3.0-dev.17 195 9/9/2022
2.3.0-dev.12 705 8/31/2022
2.3.0-dev.10 633 8/31/2022
2.3.0-dev.8 207 8/30/2022
2.3.0-dev.6 792 8/12/2022
2.3.0-dev.4 592 7/22/2022
2.2.0 14,172 6/29/2022
2.2.0-dev.7 247 6/28/2022
2.2.0-dev.5 219 6/20/2022
2.2.0-dev.2 218 6/17/2022
2.1.0 675 6/10/2022
2.1.0-dev.51 251 6/10/2022
2.1.0-dev.48 211 6/8/2022
2.1.0-dev.46 238 6/8/2022
2.1.0-dev.44 222 6/8/2022
2.1.0-dev.42 217 6/7/2022
2.1.0-dev.40 265 6/7/2022
2.1.0-dev.37 227 6/3/2022
2.1.0-dev.35 260 6/3/2022
2.1.0-dev.33 236 6/3/2022
2.1.0-dev.31 377 6/3/2022
2.1.0-dev.29 241 6/3/2022
2.1.0-dev.27 251 6/2/2022
2.1.0-dev.25 237 6/2/2022
2.1.0-dev.23 219 6/2/2022
2.1.0-dev.20 254 6/2/2022
2.1.0-dev.18 239 6/2/2022
2.1.0-dev.16 249 6/1/2022
2.1.0-dev.13 219 6/1/2022
2.1.0-dev.11 265 6/1/2022
2.1.0-dev.9 233 6/1/2022
2.1.0-dev.5 234 5/24/2022
2.1.0-dev.2 235 5/23/2022
2.0.0 2,079 5/23/2022
2.0.0-dev.228 227 5/23/2022
2.0.0-dev.226 224 5/23/2022
2.0.0-dev.224 304 5/23/2022
2.0.0-dev.222 248 5/23/2022
2.0.0-dev.220 250 5/23/2022
2.0.0-dev.218 240 5/23/2022
2.0.0-dev.216 216 5/21/2022
2.0.0-dev.214 215 5/21/2022
2.0.0-dev.210 244 5/20/2022
2.0.0-dev.208 223 5/20/2022
2.0.0-dev.206 252 5/19/2022
2.0.0-dev.204 249 5/19/2022
2.0.0-dev.203 236 5/19/2022
2.0.0-dev.201 521 5/13/2022
2.0.0-dev.198 221 5/13/2022
2.0.0-dev.195 314 5/12/2022
2.0.0-dev.193 252 5/11/2022
2.0.0-dev.191 438 5/10/2022
2.0.0-dev.189 247 5/10/2022
2.0.0-dev.187 222 5/9/2022
2.0.0-dev.185 346 5/9/2022
2.0.0-dev.183 244 5/3/2022
2.0.0-dev.181 674 4/28/2022
2.0.0-dev.179 246 4/28/2022
2.0.0-dev.177 229 4/27/2022
2.0.0-dev.175 491 4/25/2022
2.0.0-dev.172 292 4/22/2022
2.0.0-dev.170 224 4/22/2022
2.0.0-dev.168 269 4/21/2022
2.0.0-dev.166 266 4/21/2022
2.0.0-dev.164 232 4/21/2022
2.0.0-dev.162 233 4/20/2022
2.0.0-dev.156 241 4/16/2022
2.0.0-dev.154 269 4/14/2022
2.0.0-dev.152 230 4/14/2022
2.0.0-dev.150 274 4/13/2022
2.0.0-dev.146 256 4/13/2022
1.4.0-dev.34 240 4/12/2022
1.4.0-dev.30 839 3/31/2022
1.4.0-dev.21 231 3/30/2022
1.4.0-dev.17 240 3/25/2022
1.4.0-dev.12 252 3/24/2022
1.4.0-dev.6 275 3/8/2022
1.3.3 382 4/12/2022
1.3.2 277 4/11/2022
1.3.1 351 3/9/2022
1.3.0-dev.19 268 1/10/2022
1.3.0-dev.17 266 1/4/2022
1.3.0-dev.12 266 1/3/2022
1.3.0-dev.4 379 12/17/2021
1.2.0 2,484 12/15/2021
1.2.0-dev.15 320 12/15/2021
1.2.0-dev.13 344 12/15/2021
1.2.0-dev.8 368 12/8/2021
1.2.0-dev.6 362 12/8/2021
1.2.0-dev.4 349 12/7/2021
1.2.0-dev.2 334 12/7/2021
1.1.0 373 12/6/2021
1.1.0-dev.70 574 12/2/2021
1.1.0-dev.68 346 12/2/2021
1.1.0-dev.66 1,125 12/1/2021
1.1.0-dev.64 1,317 11/29/2021
1.1.0-dev.62 1,943 11/26/2021
1.1.0-dev.57 3,409 11/25/2021
1.1.0-dev.55 2,901 11/25/2021
1.1.0-dev.53 3,102 11/24/2021
1.1.0-dev.51 2,895 11/24/2021
1.1.0-dev.49 2,897 11/24/2021
1.1.0-dev.47 3,413 11/24/2021
1.1.0-dev.45 3,133 11/24/2021
1.1.0-dev.43 5,827 11/23/2021
1.1.0-dev.41 339 11/23/2021
1.1.0-dev.39 336 11/23/2021
1.1.0-dev.37 450 11/22/2021
1.1.0-dev.35 647 11/21/2021
1.1.0-dev.33 631 11/21/2021
1.1.0-dev.31 846 11/19/2021
1.1.0-dev.29 821 11/19/2021
1.1.0-dev.27 357 11/19/2021
1.1.0-dev.25 412 11/19/2021
1.1.0-dev.22 335 11/19/2021
1.1.0-dev.19 440 11/19/2021
1.1.0-dev.17 378 11/18/2021
1.1.0-dev.15 364 11/17/2021
1.1.0-dev.13 364 11/15/2021
1.1.0-dev.11 357 11/15/2021
1.1.0-dev.9 396 11/15/2021
1.1.0-dev.7 410 11/9/2021
1.1.0-dev.5 402 10/29/2021
1.0.3 440 11/3/2021
1.0.2 1,037 11/2/2021
1.0.0-dev.851 395 10/28/2021
1.0.0-dev.848 380 10/27/2021
1.0.0-dev.846 399 10/26/2021
1.0.0-dev.844 347 10/25/2021
1.0.0-dev.842 377 10/20/2021
1.0.0-dev.840 388 10/20/2021
1.0.0-dev.838 379 10/15/2021
1.0.0-dev.836 331 10/14/2021
1.0.0-dev.834 344 10/7/2021
1.0.0-dev.832 374 10/4/2021
1.0.0-dev.830 377 9/29/2021
1.0.0-dev.827 348 9/16/2021
1.0.0-dev.825 344 9/14/2021
1.0.0-dev.823 353 9/8/2021
1.0.0-dev.812 332 9/3/2021
1.0.0-dev.810 338 8/27/2021
1.0.0-dev.802 432 8/6/2021
1.0.0-dev.796 358 8/4/2021
1.0.0-dev.794 381 8/4/2021
1.0.0-dev.792 371 8/4/2021
1.0.0-dev.790 370 7/29/2021
1.0.0-dev.788 395 7/14/2021
1.0.0-dev.786 360 7/13/2021
1.0.0-dev.784 345 6/14/2021
1.0.0-dev.782 327 6/10/2021
1.0.0-dev.780 337 6/9/2021
1.0.0-dev.778 346 6/8/2021
1.0.0-dev.774 369 6/7/2021
1.0.0-dev.772 408 6/1/2021
1.0.0-dev.770 411 5/31/2021
1.0.0-dev.766 362 5/26/2021
1.0.0-dev.764 365 5/19/2021
1.0.0-dev.762 364 5/19/2021
1.0.0-dev.760 374 5/7/2021
1.0.0-dev.758 399 5/5/2021
1.0.0-dev.755 381 5/4/2021
1.0.0-dev.753 384 4/30/2021
1.0.0-dev.751 385 4/29/2021
1.0.0-dev.749 380 4/28/2021

#  (2022-05-10)


### Bug Fixes

* [Material][Textbox] Add press state to delete button ([41c6713](https://github.com/unoplatform/Uno.Themes/commit/41c6713c6882daf7971767d29ac36df18db2851b))
* Add back TextButton Unfocused VisualState Setters and remove PointerFocused Setters ([3565233](https://github.com/unoplatform/Uno.Themes/commit/3565233277029f4919e41d85dc77e88fe64a521e))
* Add missing color brushes ([959fe36](https://github.com/unoplatform/Uno.Themes/commit/959fe36a6adb3d8747b7a188dc9d03965f69cd7d))
* add missing styles, fix style key typos ([1befe26](https://github.com/unoplatform/Uno.Themes/commit/1befe2613ff30c17e7f0d612e5c74db364125d7c))
* **CheckBox:** Avoid resource name clash for Path Data resources with xamlmerge ([77e2b76](https://github.com/unoplatform/Uno.Themes/commit/77e2b761a605e04c30067154a7a8e5647bdc4061))
* Made TextBox uniform with PasswordBox. ([3ca25dd](https://github.com/unoplatform/Uno.Themes/commit/3ca25dd1e804039ed677f8a9e7de5c985084a635))
* material toggleswitch min-width ([c6066d2](https://github.com/unoplatform/Uno.Themes/commit/c6066d264eeaea7416af448e640163ae6af8e538))
* Remove PointerFocused VisualState Setters ([8d49604](https://github.com/unoplatform/Uno.Themes/commit/8d4960468b1b60763c9f1afa93343e4391aea932))
* Removed an old code piece. ([32a1544](https://github.com/unoplatform/Uno.Themes/commit/32a154457b4ca69401cefaf694e81a0793fde592))
* resource namespace mismatch ([537045e](https://github.com/unoplatform/Uno.Themes/commit/537045eeab1ce3488fd2e1a061b067655d52241e))
* uwp crash with WithImplicitStyles ([bc3b542](https://github.com/unoplatform/Uno.Themes/commit/bc3b542cfcc3e2ab319a12d845575424e245bbd3))


### Features

* Add M3 CalendarView/Picker styles, fix broken styles ([b63a189](https://github.com/unoplatform/Uno.Themes/commit/b63a1890947584c90947d266d8e9706a7726a885))
* Add M3 CommandBar/AppBarButton styles ([0dc2971](https://github.com/unoplatform/Uno.Themes/commit/0dc297146d25e05b798884167cebf2838083f9b3))
* Add M3 Common Buttons styles and samples ([6455233](https://github.com/unoplatform/Uno.Themes/commit/6455233bbfc436fc9e6de295f9a19190daf929ee))
* Add M3 DatePicker ([42a5b2a](https://github.com/unoplatform/Uno.Themes/commit/42a5b2a57e659d381b580ab0d551df5926b5b27e))
* Add M3 ListView styles ([5d94ec3](https://github.com/unoplatform/Uno.Themes/commit/5d94ec3adbff2a65df46ec32f6f635a3a571c9b5))
* add M3 NavigationView + update default palette ([93184fa](https://github.com/unoplatform/Uno.Themes/commit/93184fa38161273d6a31078157e5b2c866312238))
* Add M3 ToggleButton styles ([615a5e9](https://github.com/unoplatform/Uno.Themes/commit/615a5e93731a7c82aefdd8a6b00b6d9ee4b185fc))
* Add Material Design 3 Flyout styles ([b60f376](https://github.com/unoplatform/Uno.Themes/commit/b60f3763a3a52aba9381590909e1082c4f2f5070))
* add more M3 implicit/shared styles ([9315afc](https://github.com/unoplatform/Uno.Themes/commit/9315afcb21e7f028ff635ad53817ba3cb65625e6))
* add style key aliases ([b223c4e](https://github.com/unoplatform/Uno.Themes/commit/b223c4e5d2056cd09200902a0c3c9e20b448bcc8))
* Add support for net6 mobile targets, bump to uno 4.2-dev ([c911f37](https://github.com/unoplatform/Uno.Themes/commit/c911f377e00d12f20660c48d6ccb8bc73d43a14b))