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

Mehdi Haghgoo

11/22/2020, 7:44 PM
Android Studio 4.2 Canary 15 btw.
f

Foso

11/22/2020, 7:53 PM
You have to use
Copy code
LazyColumnFor
m

Mehdi Haghgoo

11/22/2020, 8:01 PM
Thank you. I am sometimes confused by compose convention of starting some composables with capital some small letters.
a

Adam Powell

11/22/2020, 8:17 PM
the convention is: if it's
@Composable
and returns
Unit
, it's
PascalCased
and named like a noun, just like a type.
3 Views