KwikDropdownItemActionState

A sealed class representing the different states of the dropdown menu items.

Header: Represents a header item in the dropdown menu. Space: Represents a space item in the dropdown menu. Divider : Represents a divider item in the dropdown menu. Data: Represents a data item in the dropdown menu.

Inheritors

Types

Link copied to clipboard
Link copied to clipboard
data class Divider(val id: UUID = UUID.randomUUID()) : KwikDropdownItemActionState
Link copied to clipboard
data class Header(val title: String) : KwikDropdownItemActionState
Link copied to clipboard
data class Space(val id: UUID = UUID.randomUUID()) : KwikDropdownItemActionState