9 lines
354 B
C#
9 lines
354 B
C#
namespace MauiApp.Core.System.Navigation;
|
|
|
|
public interface INavigationService
|
|
{
|
|
Task NavigateAsync(string name, INavigationParameters parameters = null, bool clearStack = false);
|
|
Task NavigateAsync<TPage>(INavigationParameters pageParams = null, bool clearStack = false) where TPage : Page;
|
|
Task GoBackAsync();
|
|
Task GoToRootAsync();
|
|
} |