---
title: "FloatState"
description: "A value holder where reads to the [floatValue] property during the execution of a [Composable]
function cause the current [RecomposeScope] to subscribe to changes of that value."
type: "interface"
---

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


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

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



```kotlin
@JvmDefaultWithCompatibility
public interface FloatState : State<Float>
```


A value holder where reads to the `floatValue` property during the execution of a `Composable`
function cause the current `RecomposeScope` to subscribe to changes of that value.


## Properties

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


```kotlin
@get:AutoboxingStateValueProperty("floatValue")
override val value: Float
```



