CellInfo

data class CellInfo(val disabled: Boolean = false, val status: CellStatus? = null, val label: CellLabel = CellLabel.Text(""), val style: CellStatusStyle = CellStatusStyle.Label)

Additional information to be added to dates cell

Parameters

disabled

marks this date as disabled – it cannot be chosen as a selection boundary

status

adds colouring behaviour to the cell

label

adds the label to the bottom of the cell

style

determines how colouring will work for this cell

Constructors

Link copied to clipboard
constructor(disabled: Boolean = false, status: CellStatus? = null, label: CellLabel = CellLabel.Text(""), style: CellStatusStyle = CellStatusStyle.Label)

Properties

Link copied to clipboard
val disabled: Boolean = false
Link copied to clipboard
Link copied to clipboard
val status: CellStatus? = null
Link copied to clipboard