In Beta08, I have a composable function that takes...
# compose
j
In Beta08, I have a composable function that takes a list of items and contains a
LazyColumn
. It receives the list of items from a flow in a parent composable via
collectAsState
. When the flow emits a new list of values, the composable function containing the
LazyColumn
appears to get called with the updated list of items. However, unless the parent of the
LazyColumn
composable is recomposed itself (which it it does not appear to be even though the
collectAsState
appears to being emitting new values to the child composable) the list UI does not update with the latest list state. This behavior doesn't appear to occur in Beta07. Anyone else encountered this or have any ideas?
a
j
Thankyou
:)