ButtonRowType

public protocol ButtonRowType : RowType

The interface of a tappable row

  • Whether or not the button is tappable

    Declaration

    Swift

    var isEnabled: Bool { get set }
  • The action to be triggered by the tapping action

    Declaration

    Swift

    var didClickAction: (() -> Void)? { get set }