Package-level declarations

Types

Link copied to clipboard
data class CenteredElementLayout(val body: UiElement) : UiLayout

Full-screen layout for a single element.

Link copied to clipboard
data class FixedGridLayout(val columns: Int, val items: List<FixedGridLayout.GridItem>) : UiLayout

Simple Grid of UI elements.

Link copied to clipboard
data class PageLayout(val body: UiElement) : UiLayout

Standard top-to-bottom page layout.

Link copied to clipboard
data class ScrollingListLayout(val items: List<UiElement>) : UiLayout

Scrolling list of UI elements.

Link copied to clipboard
sealed interface UiLayout

Classes of full-page layouts for collections of UI elements.