🌈 Create new beautiful Compose Gradients with our new wesite ->
Composable Function

RemoteCollapsibleColumn

A collapsible column layout that organizes its children vertically.

RemoteCollapsibleColumn

Source set: Android
@Composable
public fun RemoteCollapsibleColumn(
    modifier: RemoteModifier = RemoteModifier,
    verticalArrangement: RemoteArrangement.Vertical = RemoteArrangement.Top,
    horizontalAlignment: RemoteAlignment.Horizontal = RemoteAlignment.Start,
    content: @Composable RemoteCollapsibleColumnScope.() -> Unit,
)

A collapsible column layout that organizes its children vertically.

When available vertical space is insufficient, children are hidden (collapsed) rather than shrunk or wrapped. Children are hidden based on their RemoteCollapsibleColumnScope.collapsiblePriority, with lower priority items being hidden first. Children without priority set have the highest priority.

Children can be configured with RemoteCollapsibleColumnScope.weight and RemoteCollapsibleColumnScope.collapsiblePriority to control how they behave when the column is collapsed.

Parameters

modifier The modifier to apply to this layout.
verticalArrangement The vertical arrangement of the children.
horizontalAlignment The horizontal alignment of the children.
content The children of the column.

Content updated: