FlowLayoutOverflow

Known direct subclasses
ContextualFlowColumnOverflow

This class is deprecated. ContextualFlowLayouts are no longer maintained

ContextualFlowRowOverflow

This class is deprecated. ContextualFlowLayouts are no longer maintained

FlowColumnOverflow

This class is deprecated. FlowLayout overflow is no longer maintained

FlowRowOverflow

This class is deprecated. FlowLayout overflow is no longer maintained


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

Summary

Protected constructors

FlowLayoutOverflow(
    type: FlowLayoutOverflow.OverflowType,
    minLinesToShowCollapse: Int,
    minCrossAxisSizeToShowCollapse: Int,
    seeMoreGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)?,
    collapseGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)?
)
Cmn

Protected constructors

FlowLayoutOverflow

protected FlowLayoutOverflow(
    type: FlowLayoutOverflow.OverflowType,
    minLinesToShowCollapse: Int = 0,
    minCrossAxisSizeToShowCollapse: Int = 0,
    seeMoreGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)? = null,
    collapseGetter: ((state: FlowLayoutOverflowState) -> @Composable () -> Unit)? = null
)