Fishamn.Maui.Shell.MarkerModifier 10.0.1

Suggested Alternatives

Fishman.Maui.Shell.MarkerModifier

Additional Details

nuget package Fishman.Maui.Shell.MarkerModifier

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

Maui.Shell.MarkerModifier

Maui.Shell.MarkerModifier is a lightweight and powerful library for .NET MAUI designed for fine-tuning visual markers and indicators within the Shell. It allows you to easily change the appearance of active states in the TabBar and Flyout, which are typically difficult to style using standard means.

✨ Features

  • 🎨 Marker Customization: Modify the color, shape, and size of indicators for selected items.
  • 🚀 Simple Integration: Configuration is handled during app initialization in MauiProgram.
  • 📱 Cross-platform: Full support for iOS and Android.
  • 🛠 MVVM Friendly: Compatible with any architectural patterns.

📦 Installation

Install the package via NuGet Package Manager:

dotnet add package Maui.Shell.MarkerModifier

Or via the Package Manager Console:

Install-Package Maui.Shell.MarkerModifier

🚀 Quick Start

Registration and Configuration in C#

Currently, modifier configuration is implemented via an extension method during app startup. Add the library initialization to your MauiProgram.cs, where you can define global parameters for the markers:

using Maui.Shell.MarkerModifier;
using Microsoft.Extensions.Logging;

namespace MauiApp1
{
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
MauiAppBuilder builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
})
.UseShellMarker(options =>
{
// Global marker color setting
options.ForegroundColor = Colors.DarkGoldenrod;

                // Marker height setting  
                options.Height \= 4;  
                  
                // Visibility control  
                options.IsVisible \= true;  
            });

#if DEBUG
builder.Logging.AddDebug();
#endif

        return builder.Build();  
    }  
}  

}

⚙️ Available Options

Property Description Type
ForegroundColor Defines the color of the active marker or selection indicator. Color
IsVisible Allows hiding or showing the marker. bool
Height Sets the thickness (height) of the indicator line. double
Width Sets a fixed width for the marker. double

📄 License

Boost Software License – Version 1.0 – August 17th, 2003

Copyright (c) 2025 Fishma

All rights reserved.

Developed with ❤️ for the .NET MAUI community.

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
10.0.1 265 12/24/2025 10.0.1 is deprecated because it is no longer maintained.

Maui.Shell.MarkerModifier offers a straightforward API for styling Shell menu markers on Windows within .NET MAUI. It enables developers to customize marker colors and sizes while ensuring full compatibility with standard Shell elements. The project is actively evolving, with advanced styling options and enhanced integration tools planned for upcoming versions.