Lucide.Maui 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Lucide.Maui --version 0.2.0
                    
NuGet\Install-Package Lucide.Maui -Version 0.2.0
                    
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="Lucide.Maui" Version="0.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Lucide.Maui" Version="0.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Lucide.Maui" />
                    
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 Lucide.Maui --version 0.2.0
                    
#r "nuget: Lucide.Maui, 0.2.0"
                    
#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 Lucide.Maui@0.2.0
                    
#: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=Lucide.Maui&version=0.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Lucide.Maui&version=0.2.0
                    
Install as a Cake Tool

NuGet

Lucide.Maui

Lucide.Maui ships the Lucide.ttf icon font for .NET MAUI. It registers the font across supported targets when you call UseLucideIcons() and exposes strongly-typed glyph constants via LucideIcons to simplify XAML and C# usage.

✨ Features

  • ⚙️ One-line setup: call builder.UseLucideIcons() in MauiProgram
  • 🔤 Strongly-typed glyphs via `LucideIcons.*
  • 🧰 Helper APIs: LucideIcons.Create() for FontImageSource
  • 📱 Supported targets: Android, iOS, Mac Catalyst, Windows

📦 Install

dotnet add package Lucide.Maui

🚀 Getting Started

Register

var builder = MauiApp.CreateBuilder()
    .UseMauiApp<App>()
    .UseLucideIcons();

XAML usage

xmlns:icons="clr-namespace:Lucide.Maui;assembly=Lucide.Maui"

<Image WidthRequest="24" HeightRequest="24">
    <Image.Source>
        <FontImageSource Glyph="{x:Static icons:LucideIcons.AirVent}"
        FontFamily="{x:Static icons:LucideIconsConfig.FontFamily}"
        Color="#2563EB"
        Size="32" />
    </Image.Source>
</Image>

or

xmlns:icons="clr-namespace:Lucide.Maui;assembly=Lucide.Maui"
xmlns:lucide="clr-namespace:Lucide.Maui.Components;assembly=Lucide.Maui"

<lucide:LucideIcon Icon="{x:Static icons:LucideIcons.AirVent}"
                                   Color="#2563EB"
                                   Size="32"/>

C# usage

using Lucide.Maui;

// Create a FontImageSource for any glyph
var source = LucideIconsConfig.Create(LucideIcons.AirVent, Colors.Orange, 32);

🧩 Platforms

Platform Minimum
Android 21+
iOS 15+
macOS 12+
Windows 10 1809

📄 License

  • Library: MIT (or your license)
  • Font: MIT License (confirm redistribution rights; see license)

🙏 Attribution

Product Compatible and additional computed target framework versions.
.NET net10.0-android36.0 is compatible.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst26.0 is compatible.  net10.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.0 91 5/10/2026
0.3.0 103 5/10/2026
0.2.0 94 5/10/2026
0.1.0 94 5/10/2026