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 = {})

Properties

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