protected override void OnAppearing() { try { base.OnAppearing(); _viewModel?.Init(); this.BindingContext = _viewModel; } catch (Exception ex) { DisplayAlert("Error", ex.Message, "OK"); } }
protected async override void OnAppearing() { base.OnAppearing(); await VM.Init(); }