StepComposable

data class StepComposable(val content: @Composable () -> Unit, val supportingContent: @Composable () -> Unit? = null)

A data class for Step

Parameters

content

The main content of the step

supportingContent

The supporting content of the step

Constructors

Link copied to clipboard
constructor(content: @Composable () -> Unit, supportingContent: @Composable () -> Unit? = null)

Properties

Link copied to clipboard
val content: @Composable () -> Unit
Link copied to clipboard
val supportingContent: @Composable () -> Unit? = null