Kwik Div
data class KwikDiv(val colSpan: Int = 1, val rowSpan: Int = 1, val colPosition: Int, val rowPosition: Int, val onClick: () -> Unit, val content: @Composable () -> Unit)
A data class representing a single item in a grid.
Parameters
col Span
: The number of columns this item spans.
row Span
: The number of rows this item spans.
col Position
: The position of this item in the grid, measured in columns.
row Position
: The position of this item in the grid, measured in rows.
on Click
: The action to perform when this item is clicked.
content
: The content of this item.