KwikDiv

constructor(colSpan: Int = 1, rowSpan: Int = 1, colPosition: Int, rowPosition: Int, onClick: () -> Unit, content: @Composable () -> Unit)

Parameters

colSpan

: The number of columns this item spans.

rowSpan

: The number of rows this item spans.

colPosition

: The position of this item in the grid, measured in columns.

rowPosition

: The position of this item in the grid, measured in rows.

onClick

: The action to perform when this item is clicked.

content

: The content of this item.