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

```kotlin
public fun interface SceneDecoratorStrategy<T : Any>
```

A strategy that tries to decorate a [Scene](/jetpack-compose/androidx.navigation3/navigation3-ui/interfaces/Scene) given another [Scene](/jetpack-compose/androidx.navigation3/navigation3-ui/interfaces/Scene).

## Functions

<h2 id="decoratescene-scene">decorateScene</h2>

```kotlin
public fun SceneDecoratorStrategyScope<T>.decorateScene(scene: Scene<T>): Scene<T>
```

Decorates the given [Scene](/jetpack-compose/androidx.navigation3/navigation3-ui/interfaces/Scene).

The newly returned [Scene](/jetpack-compose/androidx.navigation3/navigation3-ui/interfaces/Scene) may or may not include the content of the given [scene](/jetpack-compose/androidx.navigation3/navigation3-ui/interfaces/Scene).

#### Parameters

| | |
| --- | --- |
| scene | The scene to be decorated |