protected virtual void OnTouchStarted(BaseActionViewCell sender)
 {
     if (LastOpenedCell != this)
     {
         SetLastOpenedCell(this);
     }
 }
Example #2
0
 protected virtual void OnTouchStarted(BaseActionViewCell sender)
 {
     if (LastOpenedCell == this)
     {
         return;
     }
     LastOpenedCell?.ForceClose();
     LastOpenedCell = this;
 }
Example #3
0
 protected virtual void OnTouchEnded(BaseActionViewCell sender)
 => SetThisAsLastOpenedCell();