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

Daniele B

09/09/2020, 7:19 PM
I am publishing several Text elements inside a composable, which fill more than one screen. I need what in the standard Android view system is called
ScrollView
. How do you do that in Compose?
y

Yashovardhan

09/09/2020, 7:22 PM
You're looking for
ScrollableColumn
Or
LazyColumnFor
(if you need a recycler view equivalent)
d

Daniele B

09/09/2020, 7:28 PM
Fantastic! I had these Text already enclosed in a
Column
. I just had to replace Column with
ScrollableColumn
. And everything works great! Many thanks @Yashovardhan and many thanks to the Jetpack Compose team who are making things really easy and awesome!
👍 1