Is it better to use a Column or a LazyColumn for a...
# compose
z
Is it better to use a Column or a LazyColumn for app settings?
m
does you app settings scroll over the screen?
z
yes
m
I would probably go for a simple Column, just out of principle. But, if the scroll is big, or the composables have complex logic (like rendering an image), I would go with Lazy Column
z
It should be a pretty low-risk decision unless you’re doing something complicated with scrolling. Changing between them could be as simple as replacing a
rows.forEach {}
with
items(rows) {}