How can I nest LazyColumn inside LazyColumn? The ...
# compose
n
How can I nest LazyColumn inside LazyColumn? The page as a whole is a LazyColumn, but its subcards also need to be a list
c
Does the first LazyColumn have to be lazy?
n
We think of feed stream as a card, it may appear in many scenarios. (In the original design is RecyclerView nested RecyclerView
a
you should instead define it as one LazyColumn or LazyVerticalGrid and emit them as separate item/items
1