Material.Icons 2.0.2

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

// Install Material.Icons as a Cake Tool
#tool nuget:?package=Material.Icons&version=2.0.2                

Material.Icons

Parsed icons set from materialdesignicons.com and display control implementations for different GUI frameworks.

  • All icons are always up-to-date because automatically updated every 6 hours.
  • Small package size because icons are graphically encoded via SVG Path.
  • Icon types are strongly typed enum, so your IDE will suggest available variants:
    895428ad-6010-4ffd-bd88-61aecd50f5e1

Structure

This project consists of 3 parts:

  • alternate text is missing from this package README image contains info about the icons

  • alternate text is missing from this package README image contains controls for AvaloniaUI

  • alternate text is missing from this package README image contains controls for WPF

  • FAQ - frequently asked questions

Avalonia

Getting started
  1. Install Material.Icons.Avalonia nuget package:
    dotnet add package Material.Icons.Avalonia
    
    avalonia-nuget avalonia-nuget
  2. Include styles in App.xaml (for 2.0.0 version and higher):
    <Application xmlns:materialIcons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia" 
                 ...>
      <Application.Styles>
        ...
        <materialIcons:MaterialIconStyles />
      </Application.Styles>
    </Application>
    
    For 1.*.*:
    <Application ...>
      <Application.Styles>
        ...
        <StyleInclude Source="avares://Material.Icons.Avalonia/App.xaml" />
      </Application.Styles>
    </Application>
    
Using

Add Material.Icons.Avalonia namespace to the root element of your file (your IDE can suggest it or do it automatically):

xmlns:materialIcons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"

Use MaterialIcon control:

<materialIcons:MaterialIcon Kind="Abacus" />

The Foreground property controls the color of the icon.
Also, there is MaterialIconExt which allows you to use is as the markup extension:

<Button Content="{materialIcons:MaterialIconExt Kind=Abacus}" />

WPF

Getting started

Install Material.Icons.WPF nuget package:

dotnet add package Material.Icons.WPF

wpf-nuget wpf-nuget

Using

Add Material.Icons.WPF namespace to the root element of your file (your IDE can suggest it or do it automatically):

xmlns:materialIcons="clr-namespace:Material.Icons.WPF;assembly=Material.Icons.WPF"

Use MaterialIcon control:

<materialIcons:MaterialIcon Kind="Abacus" />

The Foreground property controls the color of the icon.
Also, there is MaterialIconExt which allows you to use is as the markup extension:

<Button Content="{materialIcons:MaterialIconExt Kind=Abacus}" />

Meta

Getting started

Install Material.Icons nuget package:

dotnet add package Material.Icons

icons-nuget icons-nuget

Using

Icon types stored in Material.Icons.MaterialIconKind enum.
We can resolve an icon path by using Material.Icons.MaterialIconDataProvider.GetData().

FAQ

How to change icon color?
  • Change Foreground property.
How to update icons?
  • You can manually set Material.Icons package version in your project file.
What about versioning policy?
  • We use semver.
    Any package with identical major and minor versions is compatible.
    For example, 1.0.0 and 1.0.1 are compatible, but 1.0.0 and 1.1.0 might not be.
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.  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. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
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.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on Material.Icons:

Package Downloads
Material.Icons.Avalonia

Avalonia control for display material icons from Material.Icons

Speckle.Material.Icons.Avalonia

Avalonia control for display material icons from Material.Icons

Material.Icons.WPF

WPF control for display material icons from Material.Icons

Material.Icons.UNO

Icones Material Design para UNO e WinUI

Floxel

Toolkit for making WPF applications

GitHub repositories (1)

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

Repository Stars
h4lfheart/FortnitePorting
Automation of the Fortnite Porting Process
Version Downloads Last updated
2.1.11 69 1/16/2025
2.1.10 59,961 6/20/2024
2.1.9 19,435 4/4/2024
2.1.8 360 4/1/2024
2.1.7 143 4/1/2024
2.1.6 1,738 1/18/2024
2.1.5 871 1/2/2024
2.1.4 489 12/19/2023
2.1.3 259 12/15/2023
2.1.2 132 12/14/2023
2.1.1 174 12/12/2023
2.1.0 43,038 12/9/2023
2.0.18 139 12/9/2023
2.0.17 136 12/8/2023
2.0.16 225 12/6/2023
2.0.15 160 12/5/2023
2.0.14 171 12/5/2023
2.0.13 229 12/2/2023
2.0.12 1,406 10/25/2023
2.0.11 1,397 8/16/2023
2.0.10 186 8/15/2023
2.0.9 175 8/15/2023
2.0.8 178 8/14/2023
2.0.7 177 8/13/2023
2.0.6 270 8/9/2023
2.0.5 458 7/11/2023
2.0.4 515 6/12/2023
2.0.3 34,560 5/14/2023
2.0.2 2,093 5/10/2023
2.0.1 192 5/9/2023
2.0.0 6,806 5/4/2023
2.0.0-preview1.3 2,740 3/9/2023
2.0.0-preview1.2 117 3/2/2023
2.0.0-preview1.1 118 3/1/2023
2.0.0-preview1 800 1/23/2023
1.1.35 66,407 1/21/2023
1.1.34 328 1/19/2023
1.1.33 366 1/13/2023
1.1.32 2,529 1/4/2023
1.1.31 364 12/30/2022
1.1.30 340 12/29/2022
1.1.29 325 12/28/2022
1.1.28 333 12/27/2022
1.1.27 341 12/23/2022
1.1.26 341 12/22/2022
1.1.25 752 12/19/2022
1.1.24 330 12/19/2022
1.1.23 324 12/15/2022
1.1.22 426 12/5/2022
1.1.21 348 12/5/2022
1.1.20 407 11/21/2022
1.1.19 1,079 10/14/2022
1.1.18 749 10/1/2022
1.1.17 577 9/15/2022
1.1.16 457 9/10/2022
1.1.15 2,576 8/25/2022
1.1.14 523 8/9/2022
1.1.13 848 7/17/2022
1.1.12 472 7/15/2022
1.1.11 455 7/14/2022
1.1.10 50,026 7/12/2022
1.1.9 469 7/9/2022
1.1.8 481 7/6/2022
1.1.7 499 7/1/2022
1.1.6 542 6/23/2022
1.1.5 484 6/23/2022
1.1.4 460 6/22/2022
1.1.3 486 6/16/2022
1.1.2 463 6/15/2022
1.1.1 441 6/14/2022
1.1.0 920 6/9/2022
1.0.105 545 5/26/2022
1.0.104 474 5/26/2022
1.0.103 461 5/25/2022
1.0.102 445 5/25/2022
1.0.101 464 5/21/2022
1.0.100 440 5/20/2022
1.0.99 491 5/17/2022
1.0.98 460 5/16/2022
1.0.97 502 5/7/2022
1.0.96 465 5/6/2022
1.0.95 472 4/27/2022
1.0.94 636 4/5/2022
1.0.93 469 4/3/2022
1.0.92 469 4/2/2022
1.0.91 488 4/2/2022
1.0.90 487 3/30/2022
1.0.89 469 3/30/2022
1.0.88 482 3/26/2022
1.0.87 464 3/25/2022
1.0.86 457 3/25/2022
1.0.85 468 3/24/2022
1.0.84 470 3/24/2022
1.0.83 610 3/21/2022
1.0.82 473 3/21/2022
1.0.76 692 2/8/2022
1.0.75 508 2/1/2022
1.0.74 508 1/29/2022
1.0.73 507 1/25/2022
1.0.72 497 1/24/2022
1.0.71 485 1/23/2022
1.0.70 497 1/22/2022
1.0.69 473 1/22/2022
1.0.68 1,716 1/4/2022
1.0.67 336 12/29/2021
1.0.66 472 12/8/2021
1.0.65 329 12/4/2021
1.0.64 4,844 11/24/2021
1.0.63 335 11/16/2021
1.0.62 395 11/14/2021
1.0.61 365 11/12/2021
1.0.60 382 11/4/2021
1.0.59 387 11/4/2021
1.0.58 392 11/2/2021
1.0.57 406 10/27/2021
1.0.56 429 10/15/2021
1.0.55 401 10/15/2021
1.0.54 371 10/14/2021
1.0.53 380 10/13/2021
1.0.52 378 10/12/2021
1.0.51 390 10/8/2021
1.0.50 367 10/7/2021
1.0.49 366 10/6/2021
1.0.48 352 10/6/2021
1.0.47 380 10/5/2021
1.0.46 521 10/3/2021
1.0.45 395 9/25/2021
1.0.44 432 9/24/2021
1.0.43 371 9/23/2021
1.0.42 398 9/22/2021
1.0.41 389 9/21/2021
1.0.40 418 9/21/2021
1.0.39 381 9/17/2021
1.0.38 397 9/16/2021
1.0.37 407 9/16/2021
1.0.36 385 9/15/2021
1.0.35 423 9/15/2021
1.0.34 394 9/14/2021
1.0.33 402 9/14/2021
1.0.32 408 9/7/2021
1.0.31 441 9/5/2021
1.0.30 406 9/4/2021
1.0.29 414 9/4/2021
1.0.28 403 9/3/2021
1.0.27 391 9/2/2021
1.0.26 409 9/2/2021
1.0.25 399 9/1/2021
1.0.24 400 8/31/2021
1.0.23 395 8/30/2021
1.0.22 404 8/26/2021
1.0.21 392 8/26/2021
1.0.20 363 8/25/2021
1.0.19 369 8/25/2021
1.0.18 396 8/21/2021
1.0.17 385 8/12/2021
1.0.16 432 7/29/2021
1.0.15 424 7/28/2021
1.0.14 396 7/27/2021
1.0.13 448 7/13/2021
1.0.12 477 5/21/2021
1.0.11 445 5/8/2021
1.0.10 392 4/27/2021
1.0.9 409 4/9/2021
1.0.8 23,781 3/20/2021
1.0.7 422 3/9/2021
1.0.6 420 3/6/2021
1.0.5 421 3/5/2021
1.0.4 559 2/12/2021
1.0.3 434 2/9/2021
1.0.2 30,386 2/6/2021
1.0.1 440 2/6/2021
1.0.0 5,322 1/21/2021

- Icons set updated according to materialdesignicons.com at Wed, 10 May 2023 00:43:39 GMT
Check out changes at https://pictogrammers.com/library/mdi/history/