---
title: "FlowLayoutOverflow"
description: "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"
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>


> **Deprecated** FlowLayout overflow is no longer maintained

```kotlin
@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



