---
title: "ModifierLocalReadScope"
description: "This scope gives us access to modifier locals that are provided by other modifiers to the left of
this modifier, or above this modifier in the layout tree."
type: "interface"
---

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


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

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



```kotlin
interface ModifierLocalReadScope
```


This scope gives us access to modifier locals that are provided by other modifiers to the left of
this modifier, or above this modifier in the layout tree.


## Properties

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


```kotlin
val <T> ModifierLocal<T>.current: T
```


Read a `ModifierLocal` that was provided by other modifiers to the left of this modifier, or
above this modifier in the layout tree.




