Alex
05/28/2021, 11:04 AMFilip Wiesner
05/28/2021, 11:08 AMAlex
05/28/2021, 11:09 AMModifier
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState())
Modifier
.verticalScroll(rememberScrollState())
.padding(horizontal = 24.dp)
Filip Wiesner
05/28/2021, 11:12 AMAlex
05/28/2021, 11:13 AMColumn
and enable the scroll and padding on that component via the modifier.. is this the wrong way to go about things? 😄Filip Wiesner
05/28/2021, 11:14 AMLazyColumn
Alex
05/28/2021, 11:16 AMRecyclerView
vs ScrollView
right? ScrollView
has its uses too, so if the lists are short and not too dynamic I would use a Column
with scrollModifier
. Is this the right way to do it though?Filip Wiesner
05/28/2021, 11:20 AMLazyColumn
for everything scrollable since it's not that much harder. But for small lists you can certainly use Column
with scroll modifier if that's what you prefer.