ColumnInfo

data class ColumnInfo<K, V, T>(val header: View? = null, val visualizer: CellVisualizer<Pair<K, V>, T>, val footer: View? = null, val builder: ColumnBuilder.() -> Unit)(source)

Data describing a KeyValueTable column.

Constructors

Link copied to clipboard
constructor(header: View? = null, visualizer: CellVisualizer<Pair<K, V>, T>, footer: View? = null, builder: ColumnBuilder.() -> Unit)

creates a new info

Properties

Link copied to clipboard

to configure the column

Link copied to clipboard
val footer: View? = null

to show for the column

Link copied to clipboard
val header: View? = null

to show for the column

Link copied to clipboard

that renders the column's contents