```fun composition() { Column( Text(HeaderText,...
# compose
j
Copy code
fun composition() {
	Column(
		Text(HeaderText, "Hello"),
		Image("<https://image>", Size(Material, Material)),
		*Array(2) { Text("Hello") },
		Button(Primary),
		Button(Secondary)
	)
}
👎 2
t
Do you have a library with this or more detailed sample?