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

```kotlin
object NavigationSuiteScaffoldDefaults
```

Contains the default values used by the [NavigationSuiteScaffold](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/composable-functions/NavigationSuiteScaffold).

## Properties

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

```kotlin
val containerColor: Color
```

Default container color for a navigation suite scaffold.

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

```kotlin
val contentColor: Color
```

Default content color for a navigation suite scaffold.

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

```kotlin
val primaryActionContentAlignment = Alignment.End
```

Default primary action content alignment for a navigation suite scaffold.

## Functions

<h2 id="navigationsuitetype-adaptiveinfo">navigationSuiteType</h2>

```kotlin
fun navigationSuiteType(adaptiveInfo: WindowAdaptiveInfo): NavigationSuiteType
```

Returns the recommended [NavigationSuiteType](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/classes/NavigationSuiteType) according to the provided [WindowAdaptiveInfo](/jetpack-compose/androidx.compose.material3/material3-adaptive/classes/WindowAdaptiveInfo),
following the Material specifications. Usually used with the [NavigationSuiteScaffold](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/composable-functions/NavigationSuiteScaffold) and
related APIs.

#### Parameters

| | |
| --- | --- |
| adaptiveInfo | the provided [WindowAdaptiveInfo](/jetpack-compose/androidx.compose.material3/material3-adaptive/classes/WindowAdaptiveInfo) |

<hr class="docs-overload-divider">

<h2 id="calculatefromadaptiveinfo-adaptiveinfo">calculateFromAdaptiveInfo</h2>

```kotlin
fun calculateFromAdaptiveInfo(adaptiveInfo: WindowAdaptiveInfo): NavigationSuiteType
```

Returns the standard [NavigationSuiteType](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/classes/NavigationSuiteType) according to the provided [WindowAdaptiveInfo](/jetpack-compose/androidx.compose.material3/material3-adaptive/classes/WindowAdaptiveInfo).
Usually used with the [NavigationSuiteScaffold](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/composable-functions/NavigationSuiteScaffold) and related APIs.

Note: It's recommended to use [navigationSuiteType](/jetpack-compose/androidx.compose.material3/material3-adaptive-navigation-suite/classes/NavigationSuiteType) instead of this function, as that one
offers extended and preferred types.

#### Parameters

| | |
| --- | --- |
| adaptiveInfo | the provided [WindowAdaptiveInfo](/jetpack-compose/androidx.compose.material3/material3-adaptive/classes/WindowAdaptiveInfo) |