ElementList

data class ElementList(val items: List<UiElement>, val positioning: Positioning = Positioning.Start, val groupingStyle: GroupingStyle = GroupingStyle.Items, val orientation: Orientation = Orientation.Vertical) : UiElement.Static

UI element that composites multiple elements together.

Constructors

Link copied to clipboard
constructor(vararg items: UiElement, positioning: Positioning = Positioning.Start, groupingStyle: GroupingStyle = GroupingStyle.Items, orientation: Orientation = Orientation.Vertical)
constructor(items: List<UiElement>, positioning: Positioning = Positioning.Start, groupingStyle: GroupingStyle = GroupingStyle.Items, orientation: Orientation = Orientation.Vertical)

Properties

Link copied to clipboard

Signifiers for indicating how the elements are related to each other.

Link copied to clipboard

Elements to be displayed in order.

Link copied to clipboard

Direction of flow for the elements.

Link copied to clipboard

Positioning of each element within its own bounding box in the list.