composed widget's can look like this ```class Imag...
# compose
j
composed widget's can look like this
Copy code
class ImageWizard(
	val image: ImageProperty = ImageProperty(NoImageSrc),
	val title: TextProperty = TextProperty(NoTextSrc),
	val description: TextProperty = TextProperty(NoTextSrc),
	private vararg val properties: Property<WidgetGroup>
) : Widget {
	override fun createView(renderer: Renderer) = renderer delegateTo Column(
		Image(image, Insets(bottom = MaterialLarge)),
		Text(title, PrimaryLargeBold, Centered, Insets(bottom = MaterialSmall)),
		Text(description, Primary, Centered),
		Gravity(CenterVertical),
		HorizontalInsets(MaterialLarge),
		*properties
	)
}