Hello everyone, I have a suggestion to ask you regarding LazyColumn and nested lists. Nested scrollable is not allowed, but what if I wanted to have a list of cards (probably 10) where each one has an expanded collapse state that shows / hides an internal list? For example, in
this codelab each card has the behaviour I am looking for, but it shows / hides a simple composable. A solution is adding an internal column but would it impact the performance if there are a lot of items?
Another idea was using item (for the header) and items when expanded, but I am not sure if I can surround them with a card since we are in the LazyListScope which is not composable.
Thanks!