Package-level declarations

Types

Link copied to clipboard
@Serializable
@SerialName(value = "DismissModalBottomSheet")
data class DismissModalBottomSheetEventSchema(val id: String, val trigger: EventTrigger, val events: SerializableImmutableList<EventSchema>?, val modalBottomSheetId: String) : EventSchema

Closes the modal bottom sheet registered under modalBottomSheetId.

Link copied to clipboard
@Serializable
@SerialName(value = "DisplayModalBottomSheet")
data class DisplayModalBottomSheetEventSchema(val id: String, val trigger: EventTrigger, val events: SerializableImmutableList<EventSchema>?, val modalBottomSheetId: String, val tiles: SerializableImmutableList<TileSchema>, val isCancellable: Boolean, val fill: Boolean, val allowsPartialExpansion: Boolean) : EventSchema

Shows a modal bottom sheet built from tiles, registered under modalBottomSheetId so a later DismissModalBottomSheet can close it. Unlike the plain bottom sheet, this one dims and blocks the content behind it.