Improve Publisher

This commit is contained in:
TheXamlGuy
2024-05-14 19:24:07 +01:00
parent adb5ffe57a
commit 4ba58a9863
22 changed files with 93 additions and 140 deletions
+3 -3
View File
@@ -2,8 +2,8 @@
public interface INavigationScope
{
Task NavigateAsync(string route, object? sender = null, object? context = null,
EventHandler? navigated = null, object[]? parameters = null, CancellationToken cancellationToken = default);
void Navigate(string route, object? sender = null, object? context = null,
EventHandler? navigated = null, object[]? parameters = null);
Task NavigateBackAsync(object? context, CancellationToken cancellationToken = default);
void Back(object? context);
}