Skip to content

Instantly share code, notes, and snippets.

@mallibone
Created September 24, 2017 07:49
Show Gist options
  • Save mallibone/5de9e9d0f6ff76c40305a1a5cd8e963e to your computer and use it in GitHub Desktop.
Save mallibone/5de9e9d0f6ff76c40305a1a5cd8e963e to your computer and use it in GitHub Desktop.
public interface INavigationService
{
string CurrentPageKey { get; }
void Configure(string pageKey, Type pageType);
Task GoBack();
Task NavigateModalAsync(string pageKey, bool animated = true);
Task NavigateModalAsync(string pageKey, object parameter, bool animated = true);
Task NavigateAsync(string pageKey, bool animated = true);
Task NavigateAsync(string pageKey, object parameter, bool animated = true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment