AssistChipTileSchema
data class AssistChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val leadingIcon: IconSchema? = null, val trailingIcon: IconSchema? = null, val enabled: Boolean, val variant: AssistChipTileSchema.Variant = Variant.DEFAULT) : TileSchema
Renders a Material 3 assist chip displaying text as its label, with optional leadingIcon and trailingIcon. variant selects the composable: Variant.DEFAULT → AssistChip (outlined), Variant.ELEVATED → ElevatedAssistChip. enabled is forwarded to the underlying composable.
Triggers dispatched:
OnClickEventTrigger— fired when the chip is tapped.
Notes: the chip is stateless — it has no selected state, and the icons are purely decorative (tapping either icon fires the same chip-level click).
Constructors
Link copied to clipboard
constructor(id: String, events: SerializableImmutableList<EventSchema>?, style: StyleSchema, searchableTerms: SerializableImmutableList<String>?, visibility: TileSchema.Visibility, text: String, leadingIcon: IconSchema? = null, trailingIcon: IconSchema? = null, enabled: Boolean, variant: AssistChipTileSchema.Variant = Variant.DEFAULT)
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "searchableTerms")
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard