Uno.Material 2.0.0-dev.152

Prefix Reserved
This is a prerelease version of Uno.Material.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Uno.Material --version 2.0.0-dev.152                
NuGet\Install-Package Uno.Material -Version 2.0.0-dev.152                
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" Version="2.0.0-dev.152" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Uno.Material --version 2.0.0-dev.152                
#r "nuget: Uno.Material, 2.0.0-dev.152"                
#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.
// Install Uno.Material as a Cake Addin
#addin nuget:?package=Uno.Material&version=2.0.0-dev.152&prerelease

// Install Uno.Material as a Cake Tool
#tool nuget:?package=Uno.Material&version=2.0.0-dev.152&prerelease                

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.  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. 
.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. 
Universal Windows Platform uap10.0.18362 is compatible. 
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 (1)

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

Package Downloads
Uno.Toolkit.UI.Material

A set of controls for Uno Platform, UWP and WinUI

GitHub repositories (1)

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

Repository Stars
unoplatform/Uno.Samples
A collection of code samples for the Uno Platform
Version Downloads Last updated
5.5.0-dev.93 794 2/11/2025
5.5.0-dev.91.gd05e0e2e94 64 2/10/2025
5.5.0-dev.89.gf0dd9a65ba 43 1/8/2025
5.4.0 413 1/28/2025
5.4.0-dev.21 562 12/16/2024
5.4.0-dev.20 52 12/16/2024
5.4.0-dev.19 497 11/14/2024
5.4.0-dev.18 298 10/31/2024
5.4.0-dev.12 49 10/31/2024
5.4.0-dev.10 69 10/30/2024
5.4.0-dev.6 80 10/28/2024
5.4.0-dev.2 155 10/17/2024
5.3.1 278 10/31/2024
5.3.0-dev.8 441 9/19/2024
5.3.0-dev.6 52 9/19/2024
5.3.0-dev.5 55 9/19/2024
5.3.0-dev.4 2,016 9/16/2024
5.3.0-dev.3 124 9/11/2024
5.3.0-dev.1 71 9/11/2024
5.2.5 163 9/25/2024
5.2.0-dev.23 115 9/9/2024
5.2.0-dev.22 111 9/4/2024
5.2.0-dev.21 53 9/4/2024
5.2.0-dev.20 70 9/3/2024
5.2.0-dev.17 215 8/23/2024
5.2.0-dev.16 109 8/21/2024
5.2.0-dev.15 202 8/9/2024
5.2.0-dev.14 114 7/31/2024
5.2.0-dev.13 192 7/16/2024
5.2.0-dev.11 66 7/15/2024
5.2.0-dev.9 366 6/25/2024
5.2.0-dev.7 77 6/20/2024
5.2.0-dev.5 65 6/20/2024
5.2.0-dev.3 64 6/19/2024
5.2.0-dev.2 66 6/18/2024
5.2.0-dev.1 59 6/17/2024
5.1.9 133 9/11/2024
5.1.7 167 7/22/2024
5.1.6 166 7/22/2024
5.1.0-dev.36 224 6/4/2024
5.1.0-dev.35 103 6/4/2024
5.1.0-dev.33 165 5/30/2024
5.1.0-dev.31 243 5/23/2024
5.1.0-dev.29 74 5/23/2024
5.1.0-dev.26 245 5/13/2024
5.1.0-dev.25 62 5/13/2024
5.1.0-dev.24 95 5/11/2024
5.1.0-dev.23 116 5/9/2024
5.1.0-dev.19 280 4/23/2024
5.1.0-dev.18 178 4/16/2024
5.1.0-dev.16 63 4/16/2024
5.1.0-dev.13 115 4/13/2024
5.1.0-dev.12 76 4/12/2024
5.1.0-dev.11 78 4/11/2024
5.1.0-dev.10 64 4/11/2024
5.1.0-dev.8 105 4/8/2024
5.0.13 2,238 4/22/2024
5.0.0-dev.86 193 4/3/2024
4.2.0-dev.31 74 4/3/2024
4.2.0-dev.30 116 3/28/2024
4.2.0-dev.26 124 3/25/2024
4.2.0-dev.25 94 3/22/2024
4.2.0-dev.24 64 3/22/2024
4.2.0-dev.19 412 3/2/2024
4.2.0-dev.18 142 2/25/2024
4.2.0-dev.17 4,998 2/13/2024
4.2.0-dev.12 177 2/7/2024
4.2.0-dev.11 164 2/6/2024
4.2.0-dev.10 95 2/5/2024
4.2.0-dev.9 247 2/1/2024
4.2.0-dev.6 180 1/31/2024
4.2.0-dev.5 94 1/30/2024
4.2.0-dev.2 77 1/29/2024
4.2.0-dev.1 68 1/29/2024
4.1.1 246 2/2/2024
4.1.0 401 1/30/2024
4.1.0-dev.52 125 1/24/2024
4.1.0-dev.50 74 1/24/2024
4.1.0-dev.49 213 1/12/2024
4.1.0-dev.45 386 12/20/2023
4.1.0-dev.43 91 12/20/2023
4.1.0-dev.39 862 12/13/2023
4.1.0-dev.35 185 12/6/2023
4.1.0-dev.33 109 12/5/2023
4.1.0-dev.32 114 12/4/2023
4.1.0-dev.31 141 12/1/2023
4.1.0-dev.30 109 11/29/2023
4.1.0-dev.29 205 11/21/2023
4.1.0-dev.28 113 11/18/2023
4.1.0-dev.27 103 11/17/2023
4.1.0-dev.26 77 11/16/2023
4.1.0-dev.25 83 11/16/2023
4.1.0-dev.24 1,021 11/13/2023
4.1.0-dev.19 211 11/6/2023
4.1.0-dev.17 83 11/6/2023
4.1.0-dev.15 85 11/6/2023
4.1.0-dev.8 164 11/3/2023
4.1.0-dev.7 87 11/3/2023
4.1.0-dev.1 181 10/30/2023
4.0.6 287 11/7/2023
4.0.4 878 11/1/2023
4.0.0-dev.188 138 10/27/2023
4.0.0-dev.187 89 10/27/2023
4.0.0-dev.186 114 10/26/2023
4.0.0-dev.184 90 10/26/2023
4.0.0-dev.183 105 10/26/2023
4.0.0-dev.182 144 10/24/2023
4.0.0-dev.180 313 10/13/2023
4.0.0-dev.178 162 10/10/2023
4.0.0-dev.175 94 10/10/2023
4.0.0-dev.174 181 10/6/2023
4.0.0-dev.167 137 10/4/2023
4.0.0-dev.166 88 10/4/2023
4.0.0-dev.164 114 10/3/2023
4.0.0-dev.162 114 10/2/2023
4.0.0-dev.161 137 9/30/2023
4.0.0-dev.160 116 9/29/2023
4.0.0-dev.159 92 9/29/2023
4.0.0-dev.157 95 9/29/2023
4.0.0-dev.156 106 9/29/2023
4.0.0-dev.152 87 9/28/2023
4.0.0-dev.151 91 9/28/2023
4.0.0-dev.150 88 9/28/2023
4.0.0-dev.149 93 9/28/2023
4.0.0-dev.148 82 9/28/2023
4.0.0-dev.147 90 9/28/2023
4.0.0-dev.146 129 9/26/2023
4.0.0-dev.140 160 9/22/2023
4.0.0-dev.139 109 9/20/2023
4.0.0-dev.126 463 8/30/2023
4.0.0-dev.124 156 8/30/2023
3.1.0-dev.96 1,653 8/31/2023
3.1.0-dev.94 128 8/30/2023
3.0.40 491 9/6/2023
2.8.0-dev.6 425 8/30/2023
2.8.0-dev.2 144 8/29/2023
2.7.0-dev.104 325 8/16/2023
2.7.0-dev.102 608 8/16/2023
2.7.0-dev.99 107 8/15/2023
2.7.0-dev.97 237 8/11/2023
2.7.0-dev.95 107 8/11/2023
2.7.0-dev.89 120 8/10/2023
2.7.0-dev.88 144 8/7/2023
2.7.0-dev.86 115 8/7/2023
2.7.0-dev.84 119 8/7/2023
2.7.0-dev.81 118 8/7/2023
2.7.0-dev.61 114 8/7/2023
2.7.0-dev.59 160 8/4/2023
2.7.0-dev.56 126 8/3/2023
2.7.0-dev.54 117 8/3/2023
2.7.0-dev.53 180 8/1/2023
2.7.0-dev.47 119 8/1/2023
2.7.0-dev.45 121 8/1/2023
2.7.0-dev.41 139 7/31/2023
2.7.0-dev.39 334 7/26/2023
2.7.0-dev.37 120 7/26/2023
2.7.0-dev.35 115 7/25/2023
2.7.0-dev.33 124 7/24/2023
2.7.0-dev.31 125 7/24/2023
2.7.0-dev.29 126 7/24/2023
2.7.0-dev.27 122 7/24/2023
2.7.0-dev.25 114 7/14/2023
2.7.0-dev.23 115 7/12/2023
2.7.0-dev.21 154 6/29/2023
2.7.0-dev.20 113 6/27/2023
2.7.0-dev.19 108 6/27/2023
2.7.0-dev.18 131 6/19/2023
2.7.0-dev.17 119 6/16/2023
2.7.0-dev.16 129 6/14/2023
2.7.0-dev.15 122 6/13/2023
2.7.0-dev.13 111 6/13/2023
2.7.0-dev.12 115 6/12/2023
2.7.0-dev.11 189 6/7/2023
2.7.0-dev.10 112 6/7/2023
2.7.0-dev.8 122 6/7/2023
2.7.0-dev.7 119 6/5/2023
2.7.0-dev.6 114 6/5/2023
2.7.0-dev.5 120 6/2/2023
2.7.0-dev.2 126 5/30/2023
2.7.0-dev.1 119 5/30/2023
2.6.1 456 6/7/2023
2.6.0 2,564 6/5/2023
2.6.0-dev.25 398 5/28/2023
2.6.0-dev.24 144 5/25/2023
2.6.0-dev.21 122 5/25/2023
2.6.0-dev.19 212 5/16/2023
2.6.0-dev.17 258 5/4/2023
2.6.0-dev.14 512 3/28/2023
2.6.0-dev.5 225 3/16/2023
2.6.0-dev.2 178 3/13/2023
2.5.3 3,372 3/16/2023
2.5.2 230 3/16/2023
2.5.0-dev.44 149 3/10/2023
2.5.0-dev.43 156 3/9/2023
2.5.0-dev.41 164 3/8/2023
2.5.0-dev.40 188 3/4/2023
2.5.0-dev.39 157 3/2/2023
2.5.0-dev.38 174 2/28/2023
2.5.0-dev.37 1,409 2/23/2023
2.5.0-dev.34 242 2/22/2023
2.5.0-dev.31 176 2/17/2023
2.5.0-dev.26 145 2/16/2023
2.5.0-dev.20 162 2/15/2023
2.5.0-dev.19 194 2/8/2023
2.5.0-dev.15 596 1/23/2023
2.5.0-dev.14 242 1/13/2023
2.5.0-dev.10 158 1/12/2023
2.5.0-dev.6 179 12/31/2022
2.5.0-dev.3 164 12/23/2022
2.5.0-dev.1 154 12/22/2022
2.4.1 3,145 12/13/2022
2.4.0-dev.68 318 11/24/2022
2.4.0-dev.66 121 11/23/2022
2.4.0-dev.64 151 11/17/2022
2.4.0-dev.62 183 11/7/2022
2.4.0-dev.60 140 11/3/2022
2.4.0-dev.59 120 11/3/2022
2.4.0-dev.57 126 11/3/2022
2.4.0-dev.53 133 11/2/2022
2.4.0-dev.46 164 11/1/2022
2.4.0-dev.42 160 10/27/2022
2.4.0-dev.40 133 10/27/2022
2.4.0-dev.38 177 10/20/2022
2.4.0-dev.33 787 10/6/2022
2.4.0-dev.31 529 9/30/2022
2.4.0-dev.29 127 9/30/2022
2.4.0-dev.26 138 9/29/2022
2.4.0-dev.24 123 9/29/2022
2.4.0-dev.19 188 9/22/2022
2.4.0-dev.17 136 9/21/2022
2.4.0-dev.13 164 9/15/2022
2.4.0-dev.11 187 9/14/2022
2.4.0-dev.7 171 9/14/2022
2.3.0 6,653 9/12/2022
2.3.0-dev.20 137 9/9/2022
2.3.0-dev.17 131 9/9/2022
2.3.0-dev.12 1,840 8/31/2022
2.3.0-dev.10 120 8/31/2022
2.3.0-dev.8 129 8/30/2022
2.3.0-dev.6 3,877 8/12/2022
2.3.0-dev.4 746 7/22/2022
2.2.0 1,550 6/29/2022
2.2.0-dev.7 156 6/28/2022
2.2.0-dev.5 175 6/20/2022
2.2.0-dev.2 154 6/17/2022
2.1.0 3,767 6/10/2022
2.1.0-dev.51 153 6/10/2022
2.1.0-dev.48 160 6/8/2022
2.1.0-dev.46 156 6/8/2022
2.1.0-dev.44 152 6/8/2022
2.1.0-dev.42 139 6/7/2022
2.1.0-dev.40 630 6/7/2022
2.1.0-dev.37 183 6/3/2022
2.1.0-dev.35 147 6/3/2022
2.1.0-dev.33 140 6/3/2022
2.1.0-dev.31 165 6/3/2022
2.1.0-dev.29 151 6/3/2022
2.1.0-dev.27 157 6/2/2022
2.1.0-dev.25 150 6/2/2022
2.1.0-dev.23 135 6/2/2022
2.1.0-dev.20 143 6/2/2022
2.1.0-dev.18 147 6/2/2022
2.1.0-dev.16 149 6/1/2022
2.1.0-dev.13 144 6/1/2022
2.1.0-dev.11 149 6/1/2022
2.1.0-dev.9 147 6/1/2022
2.1.0-dev.5 187 5/24/2022
2.1.0-dev.2 143 5/23/2022
2.0.0 912 5/23/2022
2.0.0-dev.228 145 5/23/2022
2.0.0-dev.226 149 5/23/2022
2.0.0-dev.224 140 5/23/2022
2.0.0-dev.222 142 5/23/2022
2.0.0-dev.220 149 5/23/2022
2.0.0-dev.218 145 5/23/2022
2.0.0-dev.216 188 5/21/2022
2.0.0-dev.214 139 5/21/2022
2.0.0-dev.210 389 5/20/2022
2.0.0-dev.208 147 5/20/2022
2.0.0-dev.206 148 5/19/2022
2.0.0-dev.204 143 5/19/2022
2.0.0-dev.203 145 5/19/2022
2.0.0-dev.201 203 5/13/2022
2.0.0-dev.198 143 5/13/2022
2.0.0-dev.195 405 5/12/2022
2.0.0-dev.193 169 5/11/2022
2.0.0-dev.191 149 5/10/2022
2.0.0-dev.189 155 5/10/2022
2.0.0-dev.187 142 5/9/2022
2.0.0-dev.185 144 5/9/2022
2.0.0-dev.183 147 5/3/2022
2.0.0-dev.181 205 4/28/2022
2.0.0-dev.179 497 4/28/2022
2.0.0-dev.177 151 4/27/2022
2.0.0-dev.175 161 4/25/2022
2.0.0-dev.172 245 4/22/2022
2.0.0-dev.170 150 4/22/2022
2.0.0-dev.168 173 4/21/2022
2.0.0-dev.166 150 4/21/2022
2.0.0-dev.164 154 4/21/2022
2.0.0-dev.162 149 4/20/2022
2.0.0-dev.156 161 4/16/2022
2.0.0-dev.154 232 4/14/2022
2.0.0-dev.152 157 4/14/2022
2.0.0-dev.150 150 4/13/2022
2.0.0-dev.146 150 4/13/2022
1.4.0-dev.34 478 4/12/2022
1.4.0-dev.30 936 3/31/2022
1.4.0-dev.21 151 3/30/2022
1.4.0-dev.17 290 3/25/2022
1.4.0-dev.12 308 3/24/2022
1.4.0-dev.6 470 3/8/2022
1.3.3 6,436 4/12/2022
1.3.2 171 4/11/2022
1.3.1 1,027 3/9/2022
1.3.0-dev.19 3,905 1/10/2022
1.3.0-dev.17 184 1/4/2022
1.3.0-dev.12 172 1/3/2022
1.3.0-dev.4 292 12/17/2021
1.2.0 3,503 12/15/2021
1.2.0-dev.15 218 12/15/2021
1.2.0-dev.13 229 12/15/2021
1.2.0-dev.8 253 12/8/2021
1.2.0-dev.6 331 12/8/2021
1.2.0-dev.4 232 12/7/2021
1.2.0-dev.2 240 12/7/2021
1.1.0 332 12/6/2021
1.1.0-dev.70 671 12/2/2021
1.1.0-dev.68 222 12/2/2021
1.1.0-dev.66 1,468 12/1/2021
1.1.0-dev.64 1,323 11/29/2021
1.1.0-dev.62 1,853 11/26/2021
1.1.0-dev.57 3,244 11/25/2021
1.1.0-dev.55 2,785 11/25/2021
1.1.0-dev.53 3,021 11/24/2021
1.1.0-dev.51 2,760 11/24/2021
1.1.0-dev.49 4,016 11/24/2021
1.1.0-dev.47 3,246 11/24/2021
1.1.0-dev.45 2,997 11/24/2021
1.1.0-dev.43 5,680 11/23/2021
1.1.0-dev.41 234 11/23/2021
1.1.0-dev.39 229 11/23/2021
1.1.0-dev.37 335 11/22/2021
1.1.0-dev.35 542 11/21/2021
1.1.0-dev.33 527 11/21/2021
1.1.0-dev.31 816 11/19/2021
1.1.0-dev.29 739 11/19/2021
1.1.0-dev.27 253 11/19/2021
1.1.0-dev.25 309 11/19/2021
1.1.0-dev.22 226 11/19/2021
1.1.0-dev.19 301 11/19/2021
1.1.0-dev.17 284 11/18/2021
1.1.0-dev.15 319 11/17/2021
1.1.0-dev.13 392 11/15/2021
1.1.0-dev.11 229 11/15/2021
1.1.0-dev.9 261 11/15/2021
1.1.0-dev.7 533 11/9/2021
1.1.0-dev.5 295 10/29/2021
1.0.3 584 11/3/2021
1.0.2 5,260 11/2/2021
1.0.0-dev.851 302 10/28/2021
1.0.0-dev.848 243 10/27/2021
1.0.0-dev.846 278 10/26/2021
1.0.0-dev.844 241 10/25/2021
1.0.0-dev.842 852 10/20/2021
1.0.0-dev.840 258 10/20/2021
1.0.0-dev.838 737 10/15/2021
1.0.0-dev.836 226 10/14/2021
1.0.0-dev.834 592 10/7/2021
1.0.0-dev.832 970 10/4/2021
1.0.0-dev.830 486 9/29/2021
1.0.0-dev.827 1,226 9/16/2021
1.0.0-dev.825 3,218 9/14/2021
1.0.0-dev.823 345 9/8/2021
1.0.0-dev.812 10,580 9/3/2021
1.0.0-dev.810 675 8/27/2021
1.0.0-dev.802 385 8/6/2021
1.0.0-dev.796 1,139 8/4/2021
1.0.0-dev.794 258 8/4/2021
1.0.0-dev.792 259 8/4/2021
1.0.0-dev.790 2,479 7/29/2021
1.0.0-dev.788 1,785 7/14/2021
1.0.0-dev.786 945 7/13/2021
1.0.0-dev.784 1,236 6/14/2021
1.0.0-dev.782 333 6/10/2021
1.0.0-dev.780 818 6/9/2021
1.0.0-dev.778 2,050 6/8/2021
1.0.0-dev.774 555 6/7/2021
1.0.0-dev.772 472 6/1/2021
1.0.0-dev.770 342 5/31/2021
1.0.0-dev.766 347 5/26/2021
1.0.0-dev.764 255 5/19/2021
1.0.0-dev.762 246 5/19/2021
1.0.0-dev.760 339 5/7/2021
1.0.0-dev.758 294 5/5/2021
1.0.0-dev.755 254 5/4/2021
1.0.0-dev.753 277 4/30/2021
1.0.0-dev.751 660 4/29/2021
1.0.0-dev.746 3,123 4/26/2021
1.0.0-dev.744 265 4/26/2021
1.0.0-dev.742 668 4/9/2021
1.0.0-dev.738 270 4/7/2021
1.0.0-dev.736 1,101 3/24/2021
1.0.0-dev.734 319 3/23/2021
1.0.0-dev.732 812 3/19/2021
1.0.0-dev.726 279 3/19/2021
1.0.0-dev.715 350 3/17/2021
1.0.0-dev.674 292 3/4/2021
1.0.0-dev.637 728 2/26/2021
1.0.0-dev.625 306 2/16/2021
1.0.0-dev.612 830 2/10/2021
1.0.0-dev.603 484 2/9/2021
1.0.0-dev.600 327 2/8/2021
1.0.0-dev.598 3,266 2/5/2021
1.0.0-dev.592 3,267 1/28/2021
1.0.0-dev.589 1,583 1/20/2021
1.0.0-dev.585 332 1/12/2021
1.0.0-dev.578 20,267 10/29/2020
1.0.0-dev.515 2,425 8/12/2020
1.0.0-dev.507 981 8/12/2020

#  (2022-04-14)


### Bug Fixes

* [Material][Textbox] Add press state to delete button ([41c6713](https://github.com/unoplatform/Uno.Themes/commit/41c6713c6882daf7971767d29ac36df18db2851b))
* Add missing color brushes ([959fe36](https://github.com/unoplatform/Uno.Themes/commit/959fe36a6adb3d8747b7a188dc9d03965f69cd7d))
* **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 support for net6 mobile targets, bump to uno 4.2-dev ([c911f37](https://github.com/unoplatform/Uno.Themes/commit/c911f377e00d12f20660c48d6ccb8bc73d43a14b))