---
title: "IntrinsicMeasureScope"
description: "The receiver scope of a layout's intrinsic measurements lambdas."
type: "interface"
---

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


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

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



```kotlin
interface IntrinsicMeasureScope : Density
```


The receiver scope of a layout's intrinsic measurements lambdas.


## Properties

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


```kotlin
val layoutDirection: LayoutDirection
```


The `LayoutDirection` of the `Layout` or `LayoutModifier` using the measure scope to measure
their children.



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


```kotlin
val isLookingAhead: Boolean
```


This indicates whether the ongoing measurement is for lookahead pass. `IntrinsicMeasureScope`
implementations, especially `MeasureScope` implementations should override this flag to
reflect whether the measurement is intended for lookahead pass.




