private void _coverFlow_UserInteracted(PanCardView.CardsView view, PanCardView.EventArgs.UserInteractedEventArgs args)
 {
     if (args.Status == PanCardView.Enums.UserInteractionStatus.Started)
     {
         FootballMatchesTabPage.DisableSwipe();
     }
     if (args.Status == PanCardView.Enums.UserInteractionStatus.Ended)
     {
         FootballMatchesTabPage.EnableSwipe();
     }
 }
 public FootballMatchesTabPage()
 {
     InitializeComponent();
     Current = this;
 }