Esempio n. 1
0
 public override async void ViewWillAppear(bool animate)
 {
     base.ViewWillAppear(animate);
     NavigationController.NavigationBarHidden = true;
     Reachability.ResetInternetEvents();
     Reachability.ReachabilityChanged += Reachability_ReachabilityChanged;
     CreatePresenter();
     TranslationExtension.SetLanguage("en");
     await _presenter.LoadUrlServices();
 }
Esempio n. 2
0
 public override async void ViewWillAppear(bool animate)
 {
     base.ViewWillAppear(animate);
     NavigationController.SetNavigationBarHidden(false, true);
     Reachability.ResetInternetEvents();
     Reachability.ReachabilityChanged += Reachability_ReachabilityChanged;
     CreatePresenter();
     AddHandlers();
     await _presenter.LoadServicePoints();
 }