data class SpatialChoiceListDialogItem(val leading: () -> Unit, val title: String, val subtitle: String, val enabled: Boolean = true)
SpatialChoiceListDialogItem
(
leading
, title
, subtitle
, enabled
)
|
Signature
constructor(leading: () -> Unit, title: String, subtitle: String, enabled: Boolean = true) Parameters leading: Function0
A composable function that provides the leading content for the item.
title: String
The title text of the item.
subtitle: String
The subtitle text of the item.
enabled: Boolean
Indicates whether the item is enabled or not. Defaults to true.
Returns SpatialChoiceListDialogItem |
enabled
: Boolean
[Get] |
Signature
val enabled: Boolean = true |
leading
: Function0
[Get] |
Signature
val leading: () -> Unit |
subtitle
: String
[Get] |
Signature
val subtitle: String |
title
: String
[Get] |
Signature
val title: String |