Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
freever committed Oct 18, 2024
1 parent 42837a1 commit d81c0c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Blauhaus.MVVM.Blazor/Blauhaus.MVVM.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Blauhaus.Ioc.DotNetCoreIocService" Version="1.6.0" />
<PackageReference Include="Blauhaus.Push.Abstractions" Version="1.4.3" />
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
<PackageReference Include="MudBlazor" Version="7.12.1" />
<PackageReference Include="MudBlazor" Version="7.13.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Blauhaus.MVVM.Maui/Blauhaus.MVVM.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls" Version="8.0.91" />
<PackageReference Update="Microsoft.Maui.Controls" Version="8.0.92" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="8.0.91" />
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="8.0.92" />
</ItemGroup>

</Project>
9 changes: 4 additions & 5 deletions src/Blauhaus.MVVM.Maui/Services/MauiNavigationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
using Blauhaus.MVVM.Abstractions.ViewModels;
using Blauhaus.MVVM.Abstractions.Views;
using Blauhaus.MVVM.Maui.Applications;
using Blauhaus.MVVM.Maui.Views;
using Microsoft.Extensions.Logging;
using Blauhaus.MVVM.Maui.Views;
using IFlyoutView = Blauhaus.MVVM.Abstractions.Views.IFlyoutView;
using IView = Blauhaus.MVVM.Abstractions.Views.IView;

Expand Down Expand Up @@ -249,7 +248,7 @@ public void SetCurrentNavigationView(INavigationView navigationView)
_navigationViews[navigationView.StackName] = navigationView;
}

private async Task ShowMainPageAsync(Page page)
public async Task ShowMainPageAsync(Page page)
{
if (page.BindingContext is IAsyncInitializable initializable)
{
Expand All @@ -262,7 +261,7 @@ await _threadService.InvokeOnMainThreadAsync(() =>
});
}

private async Task NavigateToAsync(Page page)
public async Task NavigateToAsync(Page page)
{
if (CurrentNavigationPage == null)
{
Expand All @@ -280,7 +279,7 @@ await _threadService.InvokeOnMainThreadAsync(() =>
});
}

private TPage GetPageForViewModel<TPage>(Type viewModelType) where TPage : Page
public TPage GetPageForViewModel<TPage>(Type viewModelType) where TPage : Page
{
var viewType = _navigationRegister.GetViewType(viewModelType);
if (viewType == null)
Expand Down

0 comments on commit d81c0c2

Please sign in to comment.