Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamescaper committed Nov 10, 2024
1 parent c8dc3ca commit b66a4dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/BlazorBindings.Maui/Navigation/INavigation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ public interface INavigation
/// <param name="uri">URI to navigate to.</param>
/// <param name="parameters">Additional parameters to set for component.</param>
Task NavigateToAsync(string uri, Dictionary<string, object> parameters = null);
Task OpenWindow<T>(Dictionary<string, object> arguments = null) where T : IComponent;

Task OpenWindow<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>(
Dictionary<string, object> arguments = null) where T : IComponent;

Task PopAsync(bool animated = true);

Task PopModalAsync(bool animated = true);
Expand Down

0 comments on commit b66a4dd

Please sign in to comment.