R

Results 7 comments of R

@jzamith-bliss @ipdxl I faced the same issue. Use `rememberUpdatedState` instead of `remember` to fix this issue as the content is dynamic. For instance: ```kotlin val data = rememberUpdatedState(dynamicItems) as MutableState...