public HomeViewModel2()
 {
     _manager = DependencyService.Get <ICustomContextActionsManager>();
     _manager.SetCustomBackgroundColor(Color.Orange, true);
     _manager.SetCustomBackgroundColor(Color.Accent);
 }
 public HomeViewModel()
 {
     _manager = DependencyService.Get <ICustomContextActionsManager>();
     _manager.SetCustomView(new DeleteContextActionView(), true);
     _manager.SetCustomView(new SaveContextActionView());
 }