Column

class Column<CellValue, Item>(val header: Header, val width: ColumnWidth, val filter: Filter<Item, CellValue>? = null, val sortable: Boolean = true, val cellValue: (item: Item) -> CellValue, val createCell: @Composable (item: Item, value: CellValue) -> Cell<CellValue>)

Constructors

Link copied to clipboard
constructor(header: Header, width: ColumnWidth, filter: Filter<Item, CellValue>? = null, sortable: Boolean = true, cellValue: (item: Item) -> CellValue, createCell: @Composable (item: Item, value: CellValue) -> Cell<CellValue>)

Properties

Link copied to clipboard
val cellValue: (item: Item) -> CellValue
Link copied to clipboard
val createCell: @Composable (item: Item, value: CellValue) -> Cell<CellValue>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard