---
title: "ShortNavigationBarOverrideScope"
description: "Parameters available to [ShortNavigationBar]."
type: "class"
---

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


<a id='references'></a>

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


```kotlin
@ExperimentalMaterial3ComponentOverrideApi
class ShortNavigationBarOverrideScope
internal constructor(
    val modifier: Modifier,
    val containerColor: Color,
    val contentColor: Color,
    val windowInsets: WindowInsets,
    val arrangement: ShortNavigationBarArrangement,
    val content: @Composable () -> Unit,
)
```


Parameters available to `ShortNavigationBar`.

#### Parameters

| | |
| --- | --- |
| modifier | the `Modifier` to be applied to this navigation bar |
| containerColor | the color used for the background of this navigation bar. Use `Color.Transparent` to have no color |
| contentColor | the color for content inside this navigation bar. |
| windowInsets | a window insets of the navigation bar |
| arrangement | the `ShortNavigationBarArrangement` of this navigation bar |
| content | the content of this navigation bar, typically `ShortNavigationBarItem`s |




