diff --git a/SteUp.Maui/MauiProgram.cs b/SteUp.Maui/MauiProgram.cs index 0138b81..9285153 100644 --- a/SteUp.Maui/MauiProgram.cs +++ b/SteUp.Maui/MauiProgram.cs @@ -2,6 +2,7 @@ using CommunityToolkit.Maui; using IntegryApiClient.MAUI; using Microsoft.Extensions.Logging; using MudBlazor.Services; +using MudExtensions.Services; using SteUp.Maui.Core; using SteUp.Maui.Core.Services; using SteUp.Shared; @@ -26,6 +27,7 @@ namespace SteUp.Maui builder.Services.AddMauiBlazorWebView(); builder.Services.AddMudServices(); + builder.Services.AddMudExtensions(); #if DEBUG builder.Services.AddBlazorWebViewDeveloperTools(); diff --git a/SteUp.Maui/wwwroot/index.html b/SteUp.Maui/wwwroot/index.html index eb4f6e1..77f1eb1 100644 --- a/SteUp.Maui/wwwroot/index.html +++ b/SteUp.Maui/wwwroot/index.html @@ -16,6 +16,7 @@ + @@ -44,6 +45,7 @@ + diff --git a/SteUp.Shared/Components/Layout/HeaderLayout.razor b/SteUp.Shared/Components/Layout/HeaderLayout.razor index c8cc29f..a39115b 100644 --- a/SteUp.Shared/Components/Layout/HeaderLayout.razor +++ b/SteUp.Shared/Components/Layout/HeaderLayout.razor @@ -47,7 +47,6 @@ @code{ [Parameter] public string? Title { get; set; } [Parameter] public bool Back { get; set; } - [Parameter] public bool BackOnTop { get; set; } [Parameter] public string BackTo { get; set; } = ""; [Parameter] public EventCallback OnFilterToggle { get; set; } diff --git a/SteUp.Shared/Components/Layout/NavMenu.razor b/SteUp.Shared/Components/Layout/NavMenu.razor index c515d5a..b74db5c 100644 --- a/SteUp.Shared/Components/Layout/NavMenu.razor +++ b/SteUp.Shared/Components/Layout/NavMenu.razor @@ -2,7 +2,8 @@ @inject INetworkService NetworkService @inject IDialogService Dialog -
+