Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. appBootstrapper.Router.Navigate.Execute(new ChildViewModel(HostScreen)).Subscribe();
  2.  
  3. ShowActivityIndicator = true;
  4. appBootstrapper.Router.Navigate.Execute(new ChildViewModel(HostScreen)).Subscribe();
  5. ShowActivityIndicator = false;
  6.  
  7. public void ShowChildView()
  8. {
  9. ShowActivityIndicator = true;
  10. appBootstrapper.Router.Navigate.Execute(new ChildViewModel(HostScreen)).Subscribe();
  11. ChildViewModelShown = true;
  12. }
  13.  
  14. public async void ViewOnAppearing()
  15. {
  16. if (ChildViewModelShown) ShowActivityIndicator = false;
  17. }
  18.  
  19. public async void OnAppearing()
  20. {
  21. ViewModel.ViewOnAppearing();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement