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

```kotlin
data class FlingInfo(val initialVelocity: Float, val distance: Float, val duration: Long)
```

Info about a fling started with [initialVelocity](#initialvelocity). The units of [initialVelocity](#initialvelocity) determine
the distance units of [distance](#distance) and the time units of [duration](#duration).

## Functions

<h2 id="position-time">position</h2>

```kotlin
fun position(time: Long): Float
```

<hr class="docs-overload-divider">

<h2 id="velocity-time">velocity</h2>

```kotlin
fun velocity(time: Long): Float
```