https://kotlinlang.org logo
#compose
Title
# compose
j

Jacob Applin

05/24/2019, 10:00 PM
Copy code
fun composition() {
	Column(
		Text(HeaderText, "Hello"),
		Image("<https://image>", Size(Material, Material)),
		*Array(2) { Text("Hello") },
		Button(Primary),
		Button(Secondary)
	)
}
👎 2
t

themishkun

05/24/2019, 10:13 PM
Do you have a library with this or more detailed sample?