ModalWideNavigationRail
Component in Material 3 Compose
Material design modal wide navigation rail.
Wide navigation rails provide access to primary destinations in apps when using tablet and desktop screens.
The modal wide navigation rail should be used to display multiple [WideNavigationRailItem]s, each representing a singular app destination, and, optionally, a header containing a menu button, a [FloatingActionButton], and/or a logo. Each destination is typically represented by an icon and a text label.
The [ModalWideNavigationRail] when collapsed behaves like a collapsed [WideNavigationRail]. When [expanded], the modal wide navigation rail blocks interaction with the rest of an app’s content with a scrim. It is elevated above the app’s UI and doesn't affect the screen’s layout grid. That can be achieved like so:
@sample androidx.compose.material3.samples.ModalWideNavigationRailSample
For a dismissible modal wide rail, that enters from offscreen instead of expanding from the collapsed rail, see [DismissibleModalWideNavigationRail].
See [WideNavigationRailItem] for configuration specific to each item, and not the overall [ModalWideNavigationRail] component.
Last updated:
Installation
dependencies {
implementation("androidx.compose.material3:material3:1.4.0-alpha02")
}
Overloads
@ExperimentalMaterial3ExpressiveApi
@Composable
fun ModalWideNavigationRail(
scrimOnClick: (() -> Unit),
modifier: Modifier = Modifier,
expanded: Boolean = false,
collapsedShape: Shape = WideNavigationRailDefaults.containerShape,
expandedShape: Shape = WideNavigationRailDefaults.modalContainerShape,
colors: WideNavigationRailColors = WideNavigationRailDefaults.colors(),
header: @Composable (() -> Unit)? = null,
expandedHeaderTopPadding: Dp = 0.dp,
windowInsets: WindowInsets = WideNavigationRailDefaults.windowInsets,
arrangement: WideNavigationRailArrangement = WideNavigationRailDefaults.Arrangement,
expandedProperties: ModalWideNavigationRailProperties =
DismissibleModalWideNavigationRailDefaults.Properties,
content: @Composable () -> Unit
)
Parameters
name | description |
---|---|
scrimOnClick | executes when the scrim is clicked. Usually it should be a function that instructs the rail to collapse |
modifier | the [Modifier] to be applied to this wide navigation rail |
expanded | whether this wide navigation rail is expanded or collapsed (default). |
collapsedShape | the shape of this wide navigation rail's container when it's collapsed. |
expandedShape | the shape of this wide navigation rail's container when it's [expanded] |
colors | [WideNavigationRailColors] that will be used to resolve the colors used for this wide navigation rail. See [WideNavigationRailDefaults.colors] |
header | optional header that may hold a [FloatingActionButton] or a logo |
expandedHeaderTopPadding | the padding to be applied to the top of the rail. It's usually needed in order to align the content of the rail between the collapsed and expanded animation |
windowInsets | a window insets of the wide navigation rail |
arrangement | the [WideNavigationRailArrangement] of this wide navigation rail |
expandedProperties | [ModalWideNavigationRailProperties] for further customization of the expanded modal wide navigation rail's window behavior |
content | the content of this modal wide navigation rail, usually [WideNavigationRailItem]s |
Code Example
ModalWideNavigationRailSample
@OptIn(ExperimentalMaterial3ExpressiveApi::class)
@Preview
@Composable
fun ModalWideNavigationRailSample() {
var selectedItem by remember { mutableIntStateOf(0) }
val items = listOf("Home", "Search", "Settings")
val selectedIcons = listOf(Icons.Filled.Home, Icons.Filled.Favorite, Icons.Filled.Star)
val unselectedIcons =
listOf(Icons.Outlined.Home, Icons.Outlined.FavoriteBorder, Icons.Outlined.StarBorder)
var expanded by remember { mutableStateOf(false) }
Row(Modifier.fillMaxWidth()) {
ModalWideNavigationRail(
expanded = expanded,
scrimOnClick = { expanded = false },
// Note: the value of expandedHeaderTopPadding depends on the layout of your screen in
// order to achieve the best alignment.
expandedHeaderTopPadding = 64.dp,
header = {
IconButton(
modifier =
Modifier.padding(start = 24.dp).semantics {
// The button must announce the expanded or collapsed state of the rail
// for accessibility.
stateDescription = if (expanded) "Expanded" else "Collapsed"
},
onClick = { expanded = !expanded }
) {
if (expanded) Icon(Icons.AutoMirrored.Filled.MenuOpen, "Collapse rail")
else Icon(Icons.Filled.Menu, "Expand rail")
}
}
) {
items.forEachIndexed { index, item ->
WideNavigationRailItem(
railExpanded = expanded,
icon = {
Icon(
if (selectedItem == index) selectedIcons[index]
else unselectedIcons[index],
contentDescription = item
)
},
label = { Text(item) },
selected = selectedItem == index,
onClick = { selectedItem = index }
)
}
}
val textString = if (expanded) "expanded" else "collapsed"
Column {
Text(modifier = Modifier.padding(16.dp), text = "The rail is $textString.")
Text(
modifier = Modifier.padding(16.dp),
text =
"Note: The orientation of this demo has been locked to portrait mode, because" +
" landscape mode may result in a compact height in certain devices. For" +
" any compact screen dimensions, use a Navigation Bar instead."
)
}
// Lock the orientation for this demo as the navigation rail may look cut off in landscape
// in smaller screens.
val context = LocalContext.current
DisposableEffect(context) {
(context as? Activity)?.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
onDispose {
(context as? Activity)?.requestedOrientation =
ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
}
}
}
}