Example #1
0
        private void CreateAndAddSwipeButtons(ExtendedSwipeAbleCell swipeableNativeCell, BaseSwipeableProductCell swipeableFormsCell)
        {
            if (!swipeableFormsCell.IsTapable)
            {
                return;
            }

            AddSwipeButtons(SwipeButtonDirection.Right, swipeableNativeCell, swipeableFormsCell.RightSwipeButtons);
            AddSwipeButtons(SwipeButtonDirection.Left, swipeableNativeCell, swipeableFormsCell.LeftSwipeButtons);
        }
Example #2
0
 public SWCellViewDelegate(BaseSwipeableProductCell baseSwipeableProductCell)
 {
     _baseSwipeableProductCell = baseSwipeableProductCell;
 }