Class

FlowLayoutOverflow

Overflow Handling Options

Source set: Common

Deprecated

FlowLayout overflow is no longer maintained

@ExperimentalLayoutApi
sealed class FlowLayoutOverflow(
internal val type: OverflowType,
private val minLinesToShowCollapse: Int = 0,
private val minCrossAxisSizeToShowCollapse: Int = 0,
private val seeMoreGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)? = null,
private val collapseGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)? = null,
)

Overflow Handling Options

This enumeration defines the available options for handling content that exceeds the boundaries of its container.

Please check out the children classes on ways to initialize a FlowLayout overflow

Last updated: