lesincs
03/12/2022, 6:00 AMColumn
with Modifier.verticalScroll()
or LazyColumn
? Seems for every scrollable page we can just use LazyColumn
, but the `item {}`makes the development a little bit cumbersome, can I just use Column
for the pages which don’t have infinite scrollable content?Desmond Teo
03/12/2022, 6:48 AMColumn
will compose and layout every child, while LazyColumn
will only layout what is visible (hence lazy), so i’d say it depends on the number of itemslesincs
03/12/2022, 4:59 PMste
03/12/2022, 5:47 PMLazyColumn
inside a scrollable Column
yet, so if you need to display a list within a scrollable Column
, go for a plain Column
Colton Idle
03/13/2022, 4:53 AMlesincs
03/13/2022, 6:37 AMColton Idle
03/13/2022, 4:14 PMChris Sinco [G]
03/15/2022, 8:56 AMBen Trengrove [G]
03/15/2022, 10:55 PM