VijayAnand.MauiToolkit
1.0.0-pre12
Prefix Reserved
See the version list below for details.
dotnet add package VijayAnand.MauiToolkit --version 1.0.0-pre12
NuGet\Install-Package VijayAnand.MauiToolkit -Version 1.0.0-pre12
<PackageReference Include="VijayAnand.MauiToolkit" Version="1.0.0-pre12" />
<PackageVersion Include="VijayAnand.MauiToolkit" Version="1.0.0-pre12" />
<PackageReference Include="VijayAnand.MauiToolkit" />
paket add VijayAnand.MauiToolkit --version 1.0.0-pre12
#r "nuget: VijayAnand.MauiToolkit, 1.0.0-pre12"
#:package VijayAnand.MauiToolkit@1.0.0-pre12
#addin nuget:?package=VijayAnand.MauiToolkit&version=1.0.0-pre12&prerelease
#tool nuget:?package=VijayAnand.MauiToolkit&version=1.0.0-pre12&prerelease
VijayAnand.MauiToolkit
This is a toolkit with a set of helper methods and classes to simplify working with .NET MAUI and Blazor.
Published as a NuGet package - VijayAnand.MauiToolkit
It depends on VijayAnand.MauiToolkit.Core NuGet package.
To start with, implements the concrete definition of the abstractions defined in Core package:
- Dialogs -
DialogService(works with MainPage or Shell definition)- Additional abstraction specific to .NET MAUI with
FlowDirection
- Additional abstraction specific to .NET MAUI with
- Navigation -
NavigationService(based on Shell Navigation pattern) - Share -
ShareService(based on Maui Essentials) - Theme -
ThemeService(based on UserAppTheme property)
And includes a set of Markup extension methods for rapid application development with C#.
These fluent APIs are made available in the VijayAnand.MauiToolkit.Markup namespace.
Most importantly, provides an extension method to register these services in .NET MAUI host builder startup:
UseVijayAnandMauiToolkit()
Now it's possible to selectively register the services required into the DI container.
Added a configuration parameter of Enum type ServiceRegistrations (Flags-attributed) to the UseVijayAnandMauiToolkit() method.
To illustrate with a sample, if only interested in NavigationService:
Then, invoke UseVijayAnandMauiToolkit(ServiceRegistrations.Navigation).
And if DialogService is required along with NavigationService:
Then, invoke UseVijayAnandMauiToolkit(ServiceRegistrations.Dialogs | ServiceRegistrations.Navigation).
By default, the default value of configuration parameter is set to ServiceRegistrations.All.
Usage:
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder.UseMauiApp<App>()
.UseVijayAnandMauiToolkit(); // Implicit value of ServiceRegistrations.All passed as configuration parameter
return builder.Build();
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-android31.0 is compatible. net6.0-ios was computed. net6.0-ios15.4 is compatible. net6.0-maccatalyst was computed. net6.0-maccatalyst15.4 is compatible. net6.0-macos was computed. net6.0-tizen7.0 is compatible. net6.0-tvos was computed. net6.0-windows was computed. net6.0-windows10.0.19041 is compatible. 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. |
-
net6.0
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
-
net6.0-android31.0
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
-
net6.0-ios15.4
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
-
net6.0-maccatalyst15.4
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
-
net6.0-tizen7.0
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
-
net6.0-windows10.0.19041
- Microsoft.Maui.Dependencies (>= 6.0.300-rc.3.5667)
- Microsoft.Maui.Extensions (>= 6.0.300-rc.3.5667)
- VijayAnand.MauiToolkit.Core (>= 1.0.0-pre12)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on VijayAnand.MauiToolkit:
| Package | Downloads |
|---|---|
|
VijayAnand.MauiToolkit.Pro
VijayAnand.MauiToolkit.Pro is a toolkit with a set of helper methods and classes to simplify working with .NET MAUI and Blazor. |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on VijayAnand.MauiToolkit:
| Repository | Stars |
|---|---|
|
egvijayanand/dotnet-maui-samples
Sample apps for working with .NET MAUI
|
|
|
egvijayanand/dotnet-maui-templates
.NET MAUI Project and Item Templates for VS2022, VS2026 Insiders, and CLI.
|
|
|
drakewill-CRL/ROMSorter
Detect and rename ROMs and other games
|
| Version | Downloads | Last Updated |
|---|---|---|
| 4.2.0 | 108 | 10/15/2025 |
| 4.1.0 | 52 | 10/1/2025 |
| 4.0.0 | 39 | 9/26/2025 |
| 3.4.0 | 48 | 10/15/2025 |
| 3.3.0 | 41 | 10/1/2025 |
| 3.2.0 | 43 | 9/26/2025 |
| 3.1.0 | 539 | 11/27/2023 |
| 3.0.0 | 111 | 11/14/2023 |
| 3.0.0-rc.2.2 | 71 | 11/7/2023 |
| 3.0.0-rc.2.1 | 112 | 10/31/2023 |
| 3.0.0-rc.2 | 108 | 10/13/2023 |
| 3.0.0-rc.1 | 89 | 9/18/2023 |
| 3.0.0-preview.7 | 99 | 9/12/2023 |
| 3.0.0-preview.1 | 113 | 4/24/2023 |
| 2.1.3 | 120 | 11/7/2023 |
| 2.1.2 | 95 | 10/31/2023 |
| 2.1.1 | 108 | 10/13/2023 |
| 2.1.0 | 165 | 9/19/2023 |
| 2.1.0-preview.7 | 75 | 9/12/2023 |
| 2.1.0-preview.6 | 78 | 4/24/2023 |
| 2.1.0-preview.5 | 132 | 1/3/2023 |
| 2.1.0-preview.4 | 109 | 1/2/2023 |
| 2.1.0-preview.3 | 95 | 12/30/2022 |
| 2.1.0-preview.2 | 85 | 12/28/2022 |
| 2.1.0-preview.1 | 92 | 12/27/2022 |
| 2.0.1 | 1,655 | 12/14/2022 |
| 2.0.0 | 945 | 11/11/2022 |
| 1.1.0 | 111 | 9/19/2023 |
| 1.1.0-preview.7 | 108 | 9/12/2023 |
| 1.1.0-preview.6 | 84 | 4/24/2023 |
| 1.1.0-preview.5 | 88 | 1/3/2023 |
| 1.1.0-preview.4 | 88 | 1/2/2023 |
| 1.1.0-preview.3 | 119 | 12/30/2022 |
| 1.1.0-preview.2 | 90 | 12/28/2022 |
| 1.1.0-preview.1 | 96 | 12/27/2022 |
| 1.0.3 | 782 | 12/14/2022 |
| 1.0.2 | 726 | 11/11/2022 |
| 1.0.2-pre3 | 521 | 8/4/2022 |
| 1.0.2-pre2 | 767 | 7/15/2022 |
| 1.0.2-pre1 | 538 | 7/4/2022 |
| 1.0.1 | 5,949 | 6/18/2022 |
| 1.0.1-pre1 | 483 | 6/9/2022 |
| 1.0.0 | 1,864 | 5/23/2022 |
| 1.0.0-pre9 | 280 | 4/29/2022 |
| 1.0.0-pre8 | 481 | 4/27/2022 |
| 1.0.0-pre7 | 411 | 4/12/2022 |
| 1.0.0-pre6 | 234 | 4/12/2022 |
| 1.0.0-pre5 | 243 | 4/4/2022 |
| 1.0.0-pre4 | 323 | 3/31/2022 |
| 1.0.0-pre3 | 215 | 3/31/2022 |
| 1.0.0-pre2 | 278 | 3/18/2022 |
| 1.0.0-pre12 | 223 | 5/13/2022 |
| 1.0.0-pre11 | 427 | 5/11/2022 |
| 1.0.0-pre10 | 229 | 5/5/2022 |
| 1.0.0-pre1 | 228 | 3/7/2022 |
What's new in ver. 1.0.0-pre12:
Updated release of VijayAnand.MauiToolkit NuGet package and is released on top of .NET MAUI RC3.
The static property (Current) that provides access to the AppService has been made public.