Projektanker.Icons.Avalonia 3.1.4

Icons.Avalonia

A library to easily display icons in an Avalonia App.

CI / CD

NuGet

Name Description Version
Projektanker.Icons.Avalonia Core library Nuget
Projektanker.Icons.Avalonia.FontAwesome Font Awesome Free Nuget

Usage

A full example is available in the demo directory.

1. Register icon providers on app start up

Use the AppBuilder.AfterSetup method to register a callback. Within this callback register the icon prodider(s). Otherwise the visual designer won't be able to use the registered icon provider(s).

class Program
{
    // Initialization code. Don't use any Avalonia, third-party APIs or any
    // SynchronizationContext-reliant code before AppMain is called: things aren't initialized
    // yet and stuff might break.
    public static void Main(string[] args)
    {
        BuildAvaloniaApp()
            .StartWithClassicDesktopLifetime(args);
    }

    // Avalonia configuration, don't remove; also used by visual designer.
    public static AppBuilder BuildAvaloniaApp()
    {
        return AppBuilder.Configure<App>()
            .AfterSetup(AfterSetupCallback)
            .UsePlatformDetect()
            .LogToTrace();
    }
    
    // Called after setup
    private static void AfterSetupCallback(AppBuilder appBuilder)
    {
        // Register icon provider(s)
        IconProvider.Register<FontAwesomeIconProvider>();
    }
}

2. Add xml namespace

Add xmlns:i="clr-namespace:Projektanker.Icons.Avalonia;assembly=Projektanker.Icons.Avalonia" to your view.

3. Use the icon

Example: The GitHub icon.
FontAwesome

<i class="fab fa-github"></i>

Standalone

<i:Icon Value="fab fa-github" />

Attached

<Button i:Attached.Icon="fab fa-github" />

Done

Screenshot
Screenshot

Implement your own Icon Provider

Just implement the IIconProvider interface:

namespace Projektanker.Icons.Avalonia
{
    /// <summary>
    /// Represents an icon provider.
    /// </summary>
    public interface IIconProvider
    {
        /// <summary>
        /// Gets the prefix of the <see cref="IIconProvider"/>.
        /// </summary>
        string Prefix { get; }

        /// <summary>
        /// Gets the SVG path of the requested icon using the registered icon providers.
        /// </summary>
        /// <param name="value">The value specifying the icon to return it's path from.</param>
        /// <returns>The path of the icon.</returns>
        /// <exception cref="System.Collections.Generic.KeyNotFoundException">The icon associated
        /// with the specified <paramref name="value"/> does not exists.</exception>
        string GetIconPath(string value);
    }
}

and register it with the IconProvider:

IconProvider.Register<MyCustromIconProvider>()

or

IIconProvider provider = new MyCustomIconProvider(/* custom ctor arguments */);
IconProvider.Register(provider);

The IIconProvider.Prefix property have to be unique within all registered providers. It is used to select the right provider. E.g. FontAwesomeIconProvider's prefix is fa.

Showing the top 20 packages that depend on Projektanker.Icons.Avalonia.

Packages Downloads
Projektanker.Icons.Avalonia.FontAwesome
A library to easily display FontAwesome icons in an Avalonia App.
11
Projektanker.Icons.Avalonia.FontAwesome
A library to easily display FontAwesome icons in an Avalonia App.
9
Projektanker.Icons.Avalonia.FontAwesome
A library to easily display FontAwesome icons in an Avalonia App.
8

.NET Standard 2.0

Version Downloads Last updated
9.4.1 0 10/04/2024
9.4.0 10 07/23/2024
9.3.0 5 07/10/2024
9.2.0 9 07/11/2024
9.1.2 8 07/11/2024
9.1.1 3 07/11/2024
9.0.1 16 07/07/2024
9.0.0 8 07/11/2024
8.4.0 17 07/07/2024
8.3.0 3 07/11/2024
8.2.0 6 07/07/2024
8.1.0 10 06/23/2024
8.0.0 8 07/11/2024
7.0.1 3 07/11/2024
7.0.0 7 07/11/2024
6.6.0 6 07/11/2024
6.6.0-rc1.1 5 07/11/2024
6.6.0-preview6 4 07/11/2024
6.5.0-preview6 8 07/11/2024
6.5.0-preview5 2 07/11/2024
6.4.0-preview5 4 07/07/2024
6.3.0-preview4 7 07/11/2024
6.2.0-preview1 5 07/11/2024
6.1.0-preview1 5 07/11/2024
6.0.0-preview1 3 07/08/2024
5.13.0 3 07/11/2024
5.12.0 7 07/11/2024
5.11.0 4 07/11/2024
5.10.0 4 07/11/2024
5.9.0 8 07/11/2024
5.8.0 8 07/11/2024
5.7.0 8 07/11/2024
5.6.0 7 07/11/2024
5.5.0 3 07/28/2024
5.4.0 8 07/11/2024
5.3.0 8 07/11/2024
5.2.0 9 07/11/2024
5.1.0 7 07/07/2024
5.0.2 8 07/11/2024
5.0.1 8 07/11/2024
5.0.0 8 07/11/2024
4.5.0 5 07/11/2024
4.4.0 8 07/11/2024
4.3.0 3 07/11/2024
4.2.1 8 07/11/2024
4.2.0 4 07/11/2024
4.1.0 8 07/11/2024
4.0.1 8 07/11/2024
4.0.0 4 07/11/2024
3.7.1 21 07/11/2024
3.7.0 8 07/11/2024
3.5.0 5 07/11/2024
3.4.1 8 07/11/2024
3.4.0 10 07/11/2024
3.2.0 9 07/11/2024
3.1.4 8 07/11/2024
3.1.2 5 07/11/2024
3.1.1 5 07/11/2024
3.1.0 3 07/11/2024
3.1.0-pre 5 08/10/2024
3.0.0 5 07/11/2024
3.0.0-pre 5 07/11/2024
2.0.2 4 07/11/2024
2.0.1 3 07/07/2024
2.0.0 5 07/11/2024
1.0.0 9 07/11/2024