<div class='sourceset sourceset-android'>Android</div>

```kotlin
public object TransformingLazyColumnDefaults
```

Contains the default values used by [TransformingLazyColumn](/jetpack-compose/androidx.wear.compose/compose-foundation/composable-functions/TransformingLazyColumn)

## Functions

<h2 id="snapflingbehavior-state-snapoffset-decay">snapFlingBehavior</h2>

```kotlin
@Composable
public fun snapFlingBehavior(
    state: TransformingLazyColumnState,
    snapOffset: Dp = 0.dp,
    decay: DecayAnimationSpec<Float> = exponentialDecay(),
): FlingBehavior
```

Create and remember a [FlingBehavior](/jetpack-compose/androidx.compose.foundation/foundation/interfaces/FlingBehavior) that will represent natural fling curve with snap to
central item as the fling decays.

#### Parameters

| | |
| --- | --- |
| state | the state of the [TransformingLazyColumn](/jetpack-compose/androidx.wear.compose/compose-foundation/composable-functions/TransformingLazyColumn) |
| snapOffset | an optional offset to be applied when snapping the item. Defines the distance from the center of the scrollable to the center of the snapped item. |
| decay | the decay to use |