Alex
05/28/2021, 11:04 AMAlex
05/28/2021, 11:07 AMFilip Wiesner
05/28/2021, 11:08 AMAlex
05/28/2021, 11:09 AMAlex
05/28/2021, 11:11 AMAlex
05/28/2021, 11:11 AMModifier
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState())Alex
05/28/2021, 11:11 AMModifier
.verticalScroll(rememberScrollState())
.padding(horizontal = 24.dp)Alex
05/28/2021, 11:11 AMFilip 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 AMLazyColumnAlex
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.