protected virtual void Scroll(float offset) { if (OnSwipe != null) { OnSwipe.Execute(); } }
private void BehavourOnIndexChanged() { if (OnSwipe != null) { OnSwipe.Execute(); } }
private void HandleIndexChanged() { if (OnSwipe != null) { OnSwipe.Execute(); } }
void HandleDraggingEnded(bool willDecelerate) { if (_view != null) { if (_startX != _view.ContentOffset.X || _startY != _view.ContentOffset.Y) { OnScrollEnded(_startX, _startY); if (OnSwipe != null) { OnSwipe.Execute(); } } } }