AppBarColumnScope
DSL scope for building the content of an AppBarColumn.
Functions
Link copied to clipboard
abstract fun clickableItem(onClick: () -> Unit, icon: @Composable () -> Unit, label: String, enabled: Boolean = true)
Adds a clickable item to the AppBarRow or AppBarColumn.
Link copied to clipboard
abstract fun customItem(appbarContent: @Composable () -> Unit, menuContent: @Composable (AppBarMenuState) -> Unit)
Adds a custom item to the AppBarRow or AppBarColumn.
Link copied to clipboard
abstract fun toggleableItem(checked: Boolean, onCheckedChange: (Boolean) -> Unit, icon: @Composable () -> Unit, label: String, enabled: Boolean = true)
Adds a toggleable item to the AppBarRow or AppBarColumn.