Example #1
0
 public async void GoToLoginWithGooglePage(LoginWithGooglePageViewModel viewModel, bool canGoBack)
 {
     await GoToPage(new LoginWithGooglePage()
     {
         BindingContext = viewModel ?? _container.Resolve <LoginWithGooglePageViewModel>()
     }, canGoBack);
 }
Example #2
0
 public void GoToLoginWithGooglePage(LoginWithGooglePageViewModel viewModel, bool canGoBack)
 {
     Device.BeginInvokeOnMainThread(() =>
                                    OnOpenLoginWithGooglePage?.Invoke(viewModel, canGoBack));
 }