SelectionContainerTileSchema
data class SelectionContainerTileSchema(val id: String, val tiles: SerializableImmutableList<TileSchema>, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility) : TileSchema
Wraps tiles in a Compose SelectionContainer, making the text rendered by its descendants selectable and copyable with the platform's selection handles and context menu.
Triggers dispatched: none. This tile emits no trigger of its own — not even OnDisplayEventTrigger — so any events declared on it are never fired; wire events on the children instead.
Notes: children are rendered without a scope CompositionLocal, so SelectionContainer behaves like a Box for layout purposes — put a Column or Row inside when you need a specific arrangement.
Constructors
Link copied to clipboard
constructor(id: String, tiles: SerializableImmutableList<TileSchema>, events: SerializableImmutableList<EventSchema>?, style: StyleSchema, searchableTerms: SerializableImmutableList<String>?, visibility: TileSchema.Visibility)
Properties
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "searchableTerms")
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard