public Page Init(string pageName)
        {
            var appShell = new AppShell();

            appShell.GoToAsync($"//{pageName}").Wait();
            return(appShell);
        }
 public async Task NavigateToAsync(string route)
 {
     await _currentShell.GoToAsync(route);
 }