Plugin.Maui.ShellTabBarBadge 1.3.2

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

Plugin.Maui.ShellTabBarBadge

A .NET MAUI plugin that adds customizable badges to Shell TabBar items.


Installation

dotnet add package Plugin.Maui.ShellTabBarBadge

Quick Usage

In your MauiProgram.cs:

builder.UseTabBarBadge();

// Example usage
TabBarBadge.Set(0, "9");	// Shows number 9 on red pill-shaped badge on Tab 0
TabBarBadge.Set(1, style: BadgeStyle.Dot);	// Shows a red Dot badge on Tab 1
TabBarBadge.Set(2, "🍕", color: Colors.Transparent);		// Shows a pizza badge on Tab 2
TabBarBadge.Set(3, "New", color: Colors.Purple);	// Shows the word New on purple pill-shaped badge on Tab 3
TabBarBadge.Set(0, style: BadgeStyle.Hidden);	// Hides badge on Tab 0

More Information

👉 Full documentation, advanced usage, and examples are available on GitHub:
https://github.com/darrabam/Plugin.Maui.ShellTabBarBadge


License

MIT

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net9.0-ios18.0 is compatible.  net9.0-maccatalyst18.0 is compatible.  net9.0-windows10.0.19041 is compatible.  net10.0-android was computed.  net10.0-ios was computed.  net10.0-maccatalyst 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.3.2 88 3/5/2026
1.3.1 111 2/21/2026
1.3.0 318 11/27/2025
1.2.3 420 10/23/2025
1.2.1 178 10/10/2025
1.2.0 169 10/10/2025
1.1.1 205 9/29/2025
1.1.0 205 9/28/2025
1.0.0 137 9/27/2025

Resolved an issue on iOS where calling TabBarBadge.Set() with invalid tab index crashes the app.