Package-level declarations

Types

Link copied to clipboard
data class Cell(val value: String, val iconId: Int? = null, val description: String? = null, val validator: (String) -> Boolean? = null, val onValueChange: (String) -> Unit)

Functions

Link copied to clipboard
fun birthdateCell(value: String, validator: (String) -> Boolean? = null, onValueChange: (String) -> Unit): Cell
Link copied to clipboard
fun emailCell(value: String, validator: (String) -> Boolean? = null, onValueChange: (String) -> Unit): Cell
Link copied to clipboard
fun heightCell(value: String, validator: (String) -> Boolean? = null, onValueChange: (String) -> Unit): Cell
Link copied to clipboard
fun phoneCell(value: String, validator: (String) -> Boolean? = null, onValueChange: (String) -> Unit): Cell
Link copied to clipboard
fun TextField(cell: Cell, verticalPadding: Dp = 5.dp)
Link copied to clipboard
fun weightCell(value: String, validator: (String) -> Boolean? = null, onValueChange: (String) -> Unit): Cell