Default
data class Default(val bodyText: String, val preBody: @Composable () -> Unit = {}, val postBody: @Composable () -> Unit = {}) : InfoBody
Standard implementation of a body.
Parameters
bodyText
Text that will set as the title
preBody
Content that is added before the body text.
postBody
Content that is added after the body text.
Constructors
Link copied to clipboard
constructor(bodyText: String, preBody: @Composable () -> Unit = {}, postBody: @Composable () -> Unit = {})