---
title: "GridFlow"
description: "Defines the direction in which auto-placed items flow within the grid."
type: "class"
---

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


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

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


```kotlin
@ExperimentalGridApi
value class GridFlow @PublishedApi internal constructor(private val bits: Int)
```


Defines the direction in which auto-placed items flow within the grid.


## Companion Object

#### Properties

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


```kotlin
@ExperimentalGridApi
    inline val Row
```


Items are placed filling the first row, then moving to the next row.



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


```kotlin
@ExperimentalGridApi
    inline val Column
```


Items are placed filling the first column, then moving to the next column.





