ScrollableColumn or ScrollableRow function is delete? <https://developer.android.com/reference/kotl...
n
g
Yes. You can replace it with any of: •
LazyColumn
LazyRow
Column
with a
Modifier.verticalScroll(rememberScrollState())
Row
with a
Modifier.horizontalScroll(rememberScrollState())
👍 1
n
Thx.