AppBarColumnScope


DSL scope for building the content of an AppBarColumn.

Summary

Inherited functions

From androidx.compose.material3.AppBarScope
Unit
clickableItem(
    onClick: () -> Unit,
    icon: @Composable () -> Unit,
    label: String,
    enabled: Boolean
)

Adds a clickable item to the AppBarRow or AppBarColumn.

Cmn
Unit
customItem(
    appbarContent: @Composable () -> Unit,
    menuContent: @Composable (AppBarMenuState) -> Unit
)

Adds a custom item to the AppBarRow or AppBarColumn.

Cmn
Unit
toggleableItem(
    checked: Boolean,
    onCheckedChange: (Boolean) -> Unit,
    icon: @Composable () -> Unit,
    label: String,
    enabled: Boolean
)

Adds a toggleable item to the AppBarRow or AppBarColumn.

Cmn