Package-level declarations
Types
Link copied to clipboard
data class DismissBottomSheetEventSchema(val id: String, val trigger: EventTrigger, val events: SerializableImmutableList<EventSchema>?, val bottomSheetId: String) : EventSchema
Closes the bottom sheet registered under bottomSheetId.
Link copied to clipboard
data class DisplayBottomSheetEventSchema(val id: String, val trigger: EventTrigger, val events: SerializableImmutableList<EventSchema>?, val bottomSheetId: String, val tiles: SerializableImmutableList<TileSchema>, val isCancellable: Boolean, val fill: Boolean, val allowsPartialExpansion: Boolean) : EventSchema
Shows a bottom sheet built from tiles, registered under bottomSheetId so a later DismissBottomSheet can close it. This is the non-modal variant: it does not dim or block the content behind it.