OptionDetails

class OptionDetails(val title: String, val body: String, val postView: @Composable (selected: Boolean) -> Unit? = null)

Details information for an option.

Parameters

title

The text that is used in the title.

body

The text that is used in the body.

postView

The content that can be added after the body.

Constructors

Link copied to clipboard
constructor(title: String, body: String, postView: @Composable (selected: Boolean) -> Unit? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val postView: @Composable (selected: Boolean) -> Unit? = null
Link copied to clipboard