NavigationPage

@Composable
fun NavigationPage(title: String, modifier: Modifier = Modifier, tag: String? = null, canPop: Boolean = true, content: @Composable () -> Unit = {})

Creates a org.gnome.adw.NavigationPage, a page within NavigationView or NavigationSplitView.

Parameters

title

The title of the page.

modifier

Compose Modifier for layout and styling.

tag

A tag used to identify the page.

canPop

Whether the page can be popped from navigation stack.

content

A composable widget that's displayed inside the page.