If I have a `UiState` object with a `Flow<Pagin...
# compose-android
d
If I have a
UiState
object with a
Flow<PagingData<ItemWrapper>>
(Paging 3) for it's items, and item is
data class ItemWrapper(val item: Item, val isChecked: Boolean)
how can I get my view model to modify that
isChecked
when the user selects an ItemWrapper?