Uno.Material 1.3.0-dev.17

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 1.3.0-dev.17                
NuGet\Install-Package Uno.Material -Version 1.3.0-dev.17                
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="1.3.0-dev.17" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Uno.Material --version 1.3.0-dev.17                
#r "nuget: Uno.Material, 1.3.0-dev.17"                
#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=1.3.0-dev.17&prerelease

// Install Uno.Material as a Cake Tool
#tool nuget:?package=Uno.Material&version=1.3.0-dev.17&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-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  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. 
.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.4.0-dev.21 277 12/16/2024
5.4.0-dev.20 41 12/16/2024
5.4.0-dev.19 491 11/14/2024
5.4.0-dev.18 289 10/31/2024
5.4.0-dev.12 42 10/31/2024
5.4.0-dev.10 60 10/30/2024
5.4.0-dev.6 74 10/28/2024
5.4.0-dev.2 150 10/17/2024
5.3.1 242 10/31/2024
5.3.0-dev.8 437 9/19/2024
5.3.0-dev.6 47 9/19/2024
5.3.0-dev.5 52 9/19/2024
5.3.0-dev.4 1,016 9/16/2024
5.3.0-dev.3 123 9/11/2024
5.3.0-dev.1 68 9/11/2024
5.2.5 156 9/25/2024
5.2.0-dev.23 112 9/9/2024
5.2.0-dev.22 108 9/4/2024
5.2.0-dev.21 50 9/4/2024
5.2.0-dev.20 67 9/3/2024
5.2.0-dev.17 211 8/23/2024
5.2.0-dev.16 107 8/21/2024
5.2.0-dev.15 199 8/9/2024
5.2.0-dev.14 112 7/31/2024
5.2.0-dev.13 187 7/16/2024
5.2.0-dev.11 63 7/15/2024
5.2.0-dev.9 361 6/25/2024
5.2.0-dev.7 74 6/20/2024
5.2.0-dev.5 62 6/20/2024
5.2.0-dev.3 61 6/19/2024
5.2.0-dev.2 63 6/18/2024
5.2.0-dev.1 56 6/17/2024
5.1.9 130 9/11/2024
5.1.7 164 7/22/2024
5.1.6 161 7/22/2024
5.1.0-dev.36 218 6/4/2024
5.1.0-dev.35 100 6/4/2024
5.1.0-dev.33 162 5/30/2024
5.1.0-dev.31 237 5/23/2024
5.1.0-dev.29 71 5/23/2024
5.1.0-dev.26 242 5/13/2024
5.1.0-dev.25 57 5/13/2024
5.1.0-dev.24 92 5/11/2024
5.1.0-dev.23 114 5/9/2024
5.1.0-dev.19 278 4/23/2024
5.1.0-dev.18 176 4/16/2024
5.1.0-dev.16 61 4/16/2024
5.1.0-dev.13 111 4/13/2024
5.1.0-dev.12 74 4/12/2024
5.1.0-dev.11 76 4/11/2024
5.1.0-dev.10 62 4/11/2024
5.1.0-dev.8 103 4/8/2024
5.0.13 722 4/22/2024
5.0.0-dev.86 191 4/3/2024
4.2.0-dev.31 72 4/3/2024
4.2.0-dev.30 114 3/28/2024
4.2.0-dev.26 122 3/25/2024
4.2.0-dev.25 92 3/22/2024
4.2.0-dev.24 62 3/22/2024
4.2.0-dev.19 402 3/2/2024
4.2.0-dev.18 140 2/25/2024
4.2.0-dev.17 4,936 2/13/2024
4.2.0-dev.12 176 2/7/2024
4.2.0-dev.11 162 2/6/2024
4.2.0-dev.10 93 2/5/2024
4.2.0-dev.9 245 2/1/2024
4.2.0-dev.6 178 1/31/2024
4.2.0-dev.5 92 1/30/2024
4.2.0-dev.2 75 1/29/2024
4.2.0-dev.1 66 1/29/2024
4.1.1 243 2/2/2024
4.1.0 397 1/30/2024
4.1.0-dev.52 123 1/24/2024
4.1.0-dev.50 72 1/24/2024
4.1.0-dev.49 211 1/12/2024
4.1.0-dev.45 384 12/20/2023
4.1.0-dev.43 89 12/20/2023
4.1.0-dev.39 860 12/13/2023
4.1.0-dev.35 183 12/6/2023
4.1.0-dev.33 107 12/5/2023
4.1.0-dev.32 112 12/4/2023
4.1.0-dev.31 139 12/1/2023
4.1.0-dev.30 107 11/29/2023
4.1.0-dev.29 203 11/21/2023
4.1.0-dev.28 111 11/18/2023
4.1.0-dev.27 101 11/17/2023
4.1.0-dev.26 75 11/16/2023
4.1.0-dev.25 81 11/16/2023
4.1.0-dev.24 1,019 11/13/2023
4.1.0-dev.19 209 11/6/2023
4.1.0-dev.17 81 11/6/2023
4.1.0-dev.15 83 11/6/2023
4.1.0-dev.8 162 11/3/2023
4.1.0-dev.7 85 11/3/2023
4.1.0-dev.1 177 10/30/2023
4.0.6 284 11/7/2023
4.0.4 873 11/1/2023
4.0.0-dev.188 136 10/27/2023
4.0.0-dev.187 85 10/27/2023
4.0.0-dev.186 110 10/26/2023
4.0.0-dev.184 88 10/26/2023
4.0.0-dev.183 103 10/26/2023
4.0.0-dev.182 142 10/24/2023
4.0.0-dev.180 311 10/13/2023
4.0.0-dev.178 158 10/10/2023
4.0.0-dev.175 90 10/10/2023
4.0.0-dev.174 179 10/6/2023
4.0.0-dev.167 133 10/4/2023
4.0.0-dev.166 86 10/4/2023
4.0.0-dev.164 110 10/3/2023
4.0.0-dev.162 112 10/2/2023
4.0.0-dev.161 132 9/30/2023
4.0.0-dev.160 111 9/29/2023
4.0.0-dev.159 88 9/29/2023
4.0.0-dev.157 93 9/29/2023
4.0.0-dev.156 104 9/29/2023
4.0.0-dev.152 83 9/28/2023
4.0.0-dev.151 87 9/28/2023
4.0.0-dev.150 84 9/28/2023
4.0.0-dev.149 91 9/28/2023
4.0.0-dev.148 80 9/28/2023
4.0.0-dev.147 86 9/28/2023
4.0.0-dev.146 127 9/26/2023
4.0.0-dev.140 156 9/22/2023
4.0.0-dev.139 105 9/20/2023
4.0.0-dev.126 461 8/30/2023
4.0.0-dev.124 152 8/30/2023
3.1.0-dev.96 1,648 8/31/2023
3.1.0-dev.94 123 8/30/2023
3.0.40 488 9/6/2023
2.8.0-dev.6 422 8/30/2023
2.8.0-dev.2 142 8/29/2023
2.7.0-dev.104 323 8/16/2023
2.7.0-dev.102 603 8/16/2023
2.7.0-dev.99 105 8/15/2023
2.7.0-dev.97 232 8/11/2023
2.7.0-dev.95 102 8/11/2023
2.7.0-dev.89 115 8/10/2023
2.7.0-dev.88 140 8/7/2023
2.7.0-dev.86 111 8/7/2023
2.7.0-dev.84 115 8/7/2023
2.7.0-dev.81 114 8/7/2023
2.7.0-dev.61 110 8/7/2023
2.7.0-dev.59 156 8/4/2023
2.7.0-dev.56 121 8/3/2023
2.7.0-dev.54 115 8/3/2023
2.7.0-dev.53 178 8/1/2023
2.7.0-dev.47 117 8/1/2023
2.7.0-dev.45 116 8/1/2023
2.7.0-dev.41 137 7/31/2023
2.7.0-dev.39 330 7/26/2023
2.7.0-dev.37 118 7/26/2023
2.7.0-dev.35 110 7/25/2023
2.7.0-dev.33 122 7/24/2023
2.7.0-dev.31 123 7/24/2023
2.7.0-dev.29 121 7/24/2023
2.7.0-dev.27 120 7/24/2023
2.7.0-dev.25 106 7/14/2023
2.7.0-dev.23 110 7/12/2023
2.7.0-dev.21 149 6/29/2023
2.7.0-dev.20 108 6/27/2023
2.7.0-dev.19 103 6/27/2023
2.7.0-dev.18 126 6/19/2023
2.7.0-dev.17 111 6/16/2023
2.7.0-dev.16 124 6/14/2023
2.7.0-dev.15 114 6/13/2023
2.7.0-dev.13 103 6/13/2023
2.7.0-dev.12 107 6/12/2023
2.7.0-dev.11 183 6/7/2023
2.7.0-dev.10 103 6/7/2023
2.7.0-dev.8 116 6/7/2023
2.7.0-dev.7 113 6/5/2023
2.7.0-dev.6 105 6/5/2023
2.7.0-dev.5 114 6/2/2023
2.7.0-dev.2 117 5/30/2023
2.7.0-dev.1 113 5/30/2023
2.6.1 440 6/7/2023
2.6.0 2,542 6/5/2023
2.6.0-dev.25 380 5/28/2023
2.6.0-dev.24 138 5/25/2023
2.6.0-dev.21 113 5/25/2023
2.6.0-dev.19 200 5/16/2023
2.6.0-dev.17 251 5/4/2023
2.6.0-dev.14 503 3/28/2023
2.6.0-dev.5 215 3/16/2023
2.6.0-dev.2 171 3/13/2023
2.5.3 3,355 3/16/2023
2.5.2 223 3/16/2023
2.5.0-dev.44 139 3/10/2023
2.5.0-dev.43 149 3/9/2023
2.5.0-dev.41 153 3/8/2023
2.5.0-dev.40 181 3/4/2023
2.5.0-dev.39 148 3/2/2023
2.5.0-dev.38 164 2/28/2023
2.5.0-dev.37 1,398 2/23/2023
2.5.0-dev.34 233 2/22/2023
2.5.0-dev.31 168 2/17/2023
2.5.0-dev.26 137 2/16/2023
2.5.0-dev.20 154 2/15/2023
2.5.0-dev.19 186 2/8/2023
2.5.0-dev.15 588 1/23/2023
2.5.0-dev.14 230 1/13/2023
2.5.0-dev.10 149 1/12/2023
2.5.0-dev.6 167 12/31/2022
2.5.0-dev.3 152 12/23/2022
2.5.0-dev.1 145 12/22/2022
2.4.1 3,133 12/13/2022
2.4.0-dev.68 309 11/24/2022
2.4.0-dev.66 110 11/23/2022
2.4.0-dev.64 141 11/17/2022
2.4.0-dev.62 174 11/7/2022
2.4.0-dev.60 131 11/3/2022
2.4.0-dev.59 110 11/3/2022
2.4.0-dev.57 115 11/3/2022
2.4.0-dev.53 122 11/2/2022
2.4.0-dev.46 155 11/1/2022
2.4.0-dev.42 151 10/27/2022
2.4.0-dev.40 124 10/27/2022
2.4.0-dev.38 166 10/20/2022
2.4.0-dev.33 776 10/6/2022
2.4.0-dev.31 519 9/30/2022
2.4.0-dev.29 115 9/30/2022
2.4.0-dev.26 128 9/29/2022
2.4.0-dev.24 113 9/29/2022
2.4.0-dev.19 176 9/22/2022
2.4.0-dev.17 125 9/21/2022
2.4.0-dev.13 154 9/15/2022
2.4.0-dev.11 177 9/14/2022
2.4.0-dev.7 157 9/14/2022
2.3.0 6,637 9/12/2022
2.3.0-dev.20 126 9/9/2022
2.3.0-dev.17 121 9/9/2022
2.3.0-dev.12 1,830 8/31/2022
2.3.0-dev.10 108 8/31/2022
2.3.0-dev.8 112 8/30/2022
2.3.0-dev.6 3,867 8/12/2022
2.3.0-dev.4 734 7/22/2022
2.2.0 1,501 6/29/2022
2.2.0-dev.7 145 6/28/2022
2.2.0-dev.5 162 6/20/2022
2.2.0-dev.2 143 6/17/2022
2.1.0 3,754 6/10/2022
2.1.0-dev.51 142 6/10/2022
2.1.0-dev.48 149 6/8/2022
2.1.0-dev.46 139 6/8/2022
2.1.0-dev.44 141 6/8/2022
2.1.0-dev.42 126 6/7/2022
2.1.0-dev.40 617 6/7/2022
2.1.0-dev.37 171 6/3/2022
2.1.0-dev.35 136 6/3/2022
2.1.0-dev.33 127 6/3/2022
2.1.0-dev.31 154 6/3/2022
2.1.0-dev.29 140 6/3/2022
2.1.0-dev.27 146 6/2/2022
2.1.0-dev.25 139 6/2/2022
2.1.0-dev.23 124 6/2/2022
2.1.0-dev.20 130 6/2/2022
2.1.0-dev.18 136 6/2/2022
2.1.0-dev.16 138 6/1/2022
2.1.0-dev.13 131 6/1/2022
2.1.0-dev.11 138 6/1/2022
2.1.0-dev.9 134 6/1/2022
2.1.0-dev.5 173 5/24/2022
2.1.0-dev.2 129 5/23/2022
2.0.0 893 5/23/2022
2.0.0-dev.228 133 5/23/2022
2.0.0-dev.226 137 5/23/2022
2.0.0-dev.224 126 5/23/2022
2.0.0-dev.222 130 5/23/2022
2.0.0-dev.220 137 5/23/2022
2.0.0-dev.218 130 5/23/2022
2.0.0-dev.216 174 5/21/2022
2.0.0-dev.214 125 5/21/2022
2.0.0-dev.210 377 5/20/2022
2.0.0-dev.208 134 5/20/2022
2.0.0-dev.206 136 5/19/2022
2.0.0-dev.204 129 5/19/2022
2.0.0-dev.203 132 5/19/2022
2.0.0-dev.201 189 5/13/2022
2.0.0-dev.198 131 5/13/2022
2.0.0-dev.195 392 5/12/2022
2.0.0-dev.193 155 5/11/2022
2.0.0-dev.191 137 5/10/2022
2.0.0-dev.189 143 5/10/2022
2.0.0-dev.187 130 5/9/2022
2.0.0-dev.185 132 5/9/2022
2.0.0-dev.183 135 5/3/2022
2.0.0-dev.181 190 4/28/2022
2.0.0-dev.179 484 4/28/2022
2.0.0-dev.177 138 4/27/2022
2.0.0-dev.175 148 4/25/2022
2.0.0-dev.172 227 4/22/2022
2.0.0-dev.170 135 4/22/2022
2.0.0-dev.168 160 4/21/2022
2.0.0-dev.166 135 4/21/2022
2.0.0-dev.164 141 4/21/2022
2.0.0-dev.162 136 4/20/2022
2.0.0-dev.156 146 4/16/2022
2.0.0-dev.154 217 4/14/2022
2.0.0-dev.152 142 4/14/2022
2.0.0-dev.150 135 4/13/2022
2.0.0-dev.146 135 4/13/2022
1.4.0-dev.34 465 4/12/2022
1.4.0-dev.30 922 3/31/2022
1.4.0-dev.21 137 3/30/2022
1.4.0-dev.17 278 3/25/2022
1.4.0-dev.12 296 3/24/2022
1.4.0-dev.6 458 3/8/2022
1.3.3 6,421 4/12/2022
1.3.2 157 4/11/2022
1.3.1 1,012 3/9/2022
1.3.0-dev.19 3,892 1/10/2022
1.3.0-dev.17 171 1/4/2022
1.3.0-dev.12 157 1/3/2022
1.3.0-dev.4 279 12/17/2021
1.2.0 3,485 12/15/2021
1.2.0-dev.15 203 12/15/2021
1.2.0-dev.13 216 12/15/2021
1.2.0-dev.8 238 12/8/2021
1.2.0-dev.6 318 12/8/2021
1.2.0-dev.4 219 12/7/2021
1.2.0-dev.2 227 12/7/2021
1.1.0 318 12/6/2021
1.1.0-dev.70 656 12/2/2021
1.1.0-dev.68 209 12/2/2021
1.1.0-dev.66 1,455 12/1/2021
1.1.0-dev.64 1,310 11/29/2021
1.1.0-dev.62 1,838 11/26/2021
1.1.0-dev.57 3,229 11/25/2021
1.1.0-dev.55 2,770 11/25/2021
1.1.0-dev.53 3,006 11/24/2021
1.1.0-dev.51 2,747 11/24/2021
1.1.0-dev.49 4,003 11/24/2021
1.1.0-dev.47 3,231 11/24/2021
1.1.0-dev.45 2,984 11/24/2021
1.1.0-dev.43 5,665 11/23/2021
1.1.0-dev.41 221 11/23/2021
1.1.0-dev.39 216 11/23/2021
1.1.0-dev.37 322 11/22/2021
1.1.0-dev.35 528 11/21/2021
1.1.0-dev.33 514 11/21/2021
1.1.0-dev.31 803 11/19/2021
1.1.0-dev.29 720 11/19/2021
1.1.0-dev.27 240 11/19/2021
1.1.0-dev.25 296 11/19/2021
1.1.0-dev.22 213 11/19/2021
1.1.0-dev.19 286 11/19/2021
1.1.0-dev.17 271 11/18/2021
1.1.0-dev.15 306 11/17/2021
1.1.0-dev.13 379 11/15/2021
1.1.0-dev.11 214 11/15/2021
1.1.0-dev.9 248 11/15/2021
1.1.0-dev.7 517 11/9/2021
1.1.0-dev.5 282 10/29/2021
1.0.3 571 11/3/2021
1.0.2 5,245 11/2/2021
1.0.0-dev.851 289 10/28/2021
1.0.0-dev.848 228 10/27/2021
1.0.0-dev.846 263 10/26/2021
1.0.0-dev.844 226 10/25/2021
1.0.0-dev.842 839 10/20/2021
1.0.0-dev.840 243 10/20/2021
1.0.0-dev.838 722 10/15/2021
1.0.0-dev.836 213 10/14/2021
1.0.0-dev.834 579 10/7/2021
1.0.0-dev.832 957 10/4/2021
1.0.0-dev.830 473 9/29/2021
1.0.0-dev.827 1,213 9/16/2021
1.0.0-dev.825 3,205 9/14/2021
1.0.0-dev.823 332 9/8/2021
1.0.0-dev.812 10,567 9/3/2021
1.0.0-dev.810 662 8/27/2021
1.0.0-dev.802 373 8/6/2021
1.0.0-dev.796 1,126 8/4/2021
1.0.0-dev.794 246 8/4/2021
1.0.0-dev.792 247 8/4/2021
1.0.0-dev.790 2,467 7/29/2021
1.0.0-dev.788 1,773 7/14/2021
1.0.0-dev.786 933 7/13/2021
1.0.0-dev.784 1,222 6/14/2021
1.0.0-dev.782 321 6/10/2021
1.0.0-dev.780 806 6/9/2021
1.0.0-dev.778 2,038 6/8/2021
1.0.0-dev.774 543 6/7/2021
1.0.0-dev.772 460 6/1/2021
1.0.0-dev.770 330 5/31/2021
1.0.0-dev.766 335 5/26/2021
1.0.0-dev.764 243 5/19/2021
1.0.0-dev.762 234 5/19/2021
1.0.0-dev.760 326 5/7/2021
1.0.0-dev.758 281 5/5/2021
1.0.0-dev.755 241 5/4/2021
1.0.0-dev.753 264 4/30/2021
1.0.0-dev.751 645 4/29/2021
1.0.0-dev.746 3,104 4/26/2021
1.0.0-dev.744 252 4/26/2021
1.0.0-dev.742 655 4/9/2021
1.0.0-dev.738 258 4/7/2021
1.0.0-dev.736 1,087 3/24/2021
1.0.0-dev.734 305 3/23/2021
1.0.0-dev.732 798 3/19/2021
1.0.0-dev.726 265 3/19/2021
1.0.0-dev.715 336 3/17/2021
1.0.0-dev.674 277 3/4/2021
1.0.0-dev.637 713 2/26/2021
1.0.0-dev.625 291 2/16/2021
1.0.0-dev.612 815 2/10/2021
1.0.0-dev.603 469 2/9/2021
1.0.0-dev.600 312 2/8/2021
1.0.0-dev.598 3,251 2/5/2021
1.0.0-dev.592 3,249 1/28/2021
1.0.0-dev.589 1,562 1/20/2021
1.0.0-dev.585 317 1/12/2021
1.0.0-dev.578 20,251 10/29/2020
1.0.0-dev.515 2,409 8/12/2020
1.0.0-dev.507 965 8/12/2020

#  (2022-01-04)


### Bug Fixes

* Added missing font files for Skia Gtk ([2b492b0](https://github.com/unoplatform/Uno.Themes/commit/2b492b0c74db0bb573716dce275ba2c0221d5c01))
* Adjust packages description ([0b71569](https://github.com/unoplatform/Uno.Themes/commit/0b71569174f68614621d81a997bf7c649c91109e))
* Correctly preload the Symbols Icons and SF Pro font families for WASM ([3f7f182](https://github.com/unoplatform/Uno.Themes/commit/3f7f18237bdfe1d6522c39cb31b31bcd041dde32))
* material toggleswitch min-width ([2ecc84e](https://github.com/unoplatform/Uno.Themes/commit/2ecc84ec8498455b60fd61fd8e30b41ca7fc4199))
* **reg:** fix invalid UWP cupertino inclusion ([cf685d1](https://github.com/unoplatform/Uno.Themes/commit/cf685d14f2df5d7387ea887698db360dfd562421))


### Features

* Adjust for Uno 4.1 and Android 12 ([728cc22](https://github.com/unoplatform/Uno.Themes/commit/728cc22e160fc2e8eed23c4642060d9c1efcbfc4))


### Performance Improvements

* Improve resources lookup using merged `ResourceDictionary` for styles ([4650de4](https://github.com/unoplatform/Uno.Themes/commit/4650de47f921df3704c5af5042af563b596705cd))


### BREAKING CHANGES

* This update removes the support for the Android SDK 10.
This SDK is not accepted by the Play Store. Update to Android 11 or later.