Jenin.FontAwesome.Blazor 1.2.0

dotnet add package Jenin.FontAwesome.Blazor --version 1.2.0
                    
NuGet\Install-Package Jenin.FontAwesome.Blazor -Version 1.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="Jenin.FontAwesome.Blazor" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jenin.FontAwesome.Blazor" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Jenin.FontAwesome.Blazor" />
                    
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 Jenin.FontAwesome.Blazor --version 1.2.0
                    
#r "nuget: Jenin.FontAwesome.Blazor, 1.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 Jenin.FontAwesome.Blazor@1.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=Jenin.FontAwesome.Blazor&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Jenin.FontAwesome.Blazor&version=1.2.0
                    
Install as a Cake Tool

Markdown File

Jenin FontAwesome Blazor

Nuget Nuget GitHub GitHub

  • Free FontAwesome 6 components for ASP.NET Blazor
  • .NET 6.0+ with Blazor WebAssembly or Blazor Server (other hosting models not tested yet, .NET 6.0 fully supported)

Getting started

Prerequisites

Jenin.FontAwesome.Blazor components have the following requirements:

  • .NET 6.0 or newer
  • Blazor WebAssembly or Blazor Server hosting model (other options not tested yet)

Installation

1. Install the package

Find the Jenin.FontAwesome.Blazor package through NuGet Package Manager or install it with following command:

dotnet add package Jenin.FontAwesome.Blazor

2. Add CSS & JavaScript references

A. CSS

Add the following to your HTML head section, it's either index.html, _Host.cshtml or _Layout.cshtml depending on whether you're running WebAssembly or Server:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <base href="~/" />

        ...

        
        <link href="/your-path-to-fontawesome/css/all.css" rel="stylesheet">

        ...

    </head>

    <body>
        ...
    </body>

</html>
For more details of how host yourself - Font Awesome Host Yourself - Web Fonts
B. JavaScript

At the end of HTML <body> section of either index.html, _Host.cshtml or _Layout.cshtml add this:

<!DOCTYPE html>
<html lang="en">
<head>
</head>

<body>
    ...

    
    <script src="_content/Jeninnet.FontAwesome.Blazor/js/fontawesome-Svg[nest]-config.js" type="text/javascript"></script>

    
    

    <script src="your-path-to-fontawesome/js/all.min.js" type="text/javascript"></script>
    <script src="_content/Jeninnet.FontAwesome.Blazor/js/fontawesome-config-utilities.js" type="text/javascript"></script>
</body>

</html>

3. Import namespaces

Add following to your _Imports.razor file:

@using Jenin.FontAwesome.Blazor;
@using Jenin.FontAwesome.Blazor.Extensions
@using Jenin.FontAwesome.Blazor.Components
@using Jenin.FontAwesome.Blazor.Transformations
@using Jenin.FontAwesome.Blazor.Animations

Ready, set, go!

Are yoy ready?

<button class="btn btn-outline-primary mb-4 ms-2 d-flex align-items-center gap-2" @onclick=GotoStartPage>
    <Icon IconStyle=IconStyle.Solid IconSize=IconSize.X02 IconName="fa-bell" Animation=@Animation.Shake() Color="gold"/>
    <span>Are yoy ready?</span>
</button>

@code{
    [Inject]
    private NavigationManager NavigationManager{ get; set; }

    private void GotoStartPage() => NavigationManager.NavigateTo("/icon-basics-style");
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
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
1.2.0 7,920 11/15/2022
1.1.0 554 9/21/2022
1.0.1 617 7/6/2022
1.0.0 552 7/1/2022