SuggestionChipTileSchema
data class SuggestionChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val icon: IconSchema? = null, val enabled: Boolean, val variant: SuggestionChipTileSchema.Variant = Variant.DEFAULT) : TileSchema
Renders a Material 3 suggestion chip displaying text as its label, with an optional leading icon. variant selects the composable: Variant.DEFAULT → SuggestionChip (outlined), Variant.ELEVATED → ElevatedSuggestionChip. 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 icon is decorative only.
Constructors
Link copied to clipboard
constructor(id: String, events: SerializableImmutableList<EventSchema>?, style: StyleSchema, searchableTerms: SerializableImmutableList<String>?, visibility: TileSchema.Visibility, text: String, icon: IconSchema? = null, enabled: Boolean, variant: SuggestionChipTileSchema.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