Ejemplo n.º 1
0
 public void RegisterPages(Enum_Pages page, Type pageType)
 {
     Routing.RegisterRoute(page.ToString(), pageType);
 }
Ejemplo n.º 2
0
 public void NavigateTo(Enum_Pages page, string query = null)
 {
     Shell.Current.GoToAsync(new ShellNavigationState(new Uri($"/{page}?{query}", UriKind.Relative)), true);
 }