---
title: "composable"
description: "Utility function for building Wear Compose navigation graphs.

Adds the content composable to the [NavGraphBuilder] as a [WearNavigator.Destination]."
type: "function"
---

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


<a id='references'></a>
<div class='sourceset sourceset-android'>Android</div>


```kotlin
public fun NavGraphBuilder.composable(
    route: String,
    arguments: List<NamedNavArgument> = emptyList(),
    deepLinks: List<NavDeepLink> = emptyList(),
    content: @Composable (NavBackStackEntry) -> Unit,
)
```


Utility function for building Wear Compose navigation graphs.

Adds the content composable to the `NavGraphBuilder` as a `WearNavigator.Destination`.

#### Parameters

| | |
| --- | --- |
| route | route for the destination |
| arguments | list of arguments to associate with destination |
| deepLinks | list of deep links to associate with the destinations |
| content | composable for the destination |




