Skip to content

Instantly share code, notes, and snippets.

@lubiepomaranczki
Last active February 3, 2018 17:15
Show Gist options
  • Save lubiepomaranczki/06b89aee880882bfe2a55be593a0c9a7 to your computer and use it in GitHub Desktop.
Save lubiepomaranczki/06b89aee880882bfe2a55be593a0c9a7 to your computer and use it in GitHub Desktop.
INavigationService
public interface INavigationService
{
void RegisterPage(string pageKey, Type pageType);
void NavigateTo(string key, bool animated = true);
void NavigateTo(string pageKey, bool animated = true, params (string propertyName, object parameter)[] args);
void GoBack();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment