<h2 id="dismissiblenavigationdrawer-drawercontent-modifier-drawerstate-gesturesenabled-content">DismissibleNavigationDrawer</h2>

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

```kotlin
@Composable
fun DismissibleNavigationDrawer(
    drawerContent: @Composable () -> Unit,
    modifier: Modifier = Modifier,
    drawerState: DrawerState = rememberDrawerState(DrawerValue.Closed),
    gesturesEnabled: Boolean = true,
    content: @Composable () -> Unit,
)
```

#### Parameters

| | |
| --- | --- |
| drawerContent | content inside this drawer |
| modifier | the [Modifier](/jetpack-compose/androidx.compose.ui/ui/interfaces/Modifier) to be applied to this drawer |
| drawerState | state of the drawer |
| gesturesEnabled | whether or not the drawer can be interacted by gestures |
| content | content of the rest of the UI |