james
06/08/2021, 7:08 AMLazyColumn
. 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?Andrey Kulikov
06/08/2021, 10:28 AMjames
06/08/2021, 11:10 AMjames
06/08/2021, 11:11 AM