Package-level declarations

Types

Link copied to clipboard

Chips can have different actions associated with them.

Link copied to clipboard
sealed interface ChipVariant

Chips can be customized in various ways to effectively convey specific information.

Functions

Link copied to clipboard
fun Chip(text: String, isChecked: Boolean, onCheckedChange: (Boolean) -> Unit, modifier: Modifier = Modifier, chipVariant: ChipVariant = ChipVariant.Icon(painter = null), chipAction: ChipAction = ChipAction.None, isEnabled: Boolean = true, contentDescription: String? = null, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() })

Chips allow users to enter information, make selections, filter content, or trigger actions.