DrawerSheetItem

data class DrawerSheetItem(val label: String, val selected: Boolean, val icon: @Composable () -> Unit, val onClick: () -> Unit)(source)

Carries DrawerSheetItem data through the SDAI presentation layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(label: String, selected: Boolean, icon: @Composable () -> Unit, onClick: () -> Unit)

Properties

Link copied to clipboard
val icon: @Composable () -> Unit

Exposes the icon value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the label value used by the SDAI presentation layer.

Link copied to clipboard
val onClick: () -> Unit

Exposes the onClick value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the selected value used by the SDAI presentation layer.