---
title: "FlowRowScope"
description: "Scope for the children of [FlowRow]."
type: "interface"
---

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


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

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



```kotlin
@LayoutScopeMarker
interface FlowRowScope : RowScope
```


Scope for the children of `FlowRow`.


## Functions

```kotlin
@ExperimentalLayoutApi
    fun Modifier.fillMaxRowHeight(@FloatRange(from = 0.0, to = 1.0) fraction: Float = 1f): Modifier
```


Have the item fill (possibly only partially) the max height of the tallest item in the row it
was placed in, within the `FlowRow`.

#### Parameters

| | |
| --- | --- |
| fraction | The fraction of the max height of the tallest item between `0` and `1`, inclusive. |




