I have a screen that have a list of items in a `La...
# compose
t
I have a screen that have a list of items in a
LazyColumn
but I wanted to reuse this screen as part of another, that also have a lazy column but, because of that it fails as there's a
LazyColumn
inside a
LazyColumn
. Is the only version to make this work is to have a version of the first screen that accepts a
LazyListScope.()
and pass it from the other screen?
yes black 1