KwikDiv

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

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.

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard
val colSpan: Int = 1
Link copied to clipboard
val content: @Composable () -> Unit
Link copied to clipboard
val onClick: () -> Unit
Link copied to clipboard
Link copied to clipboard
val rowSpan: Int = 1