MutableStateOf of mutableList not updating

258 Views Asked by At

Why my mutableStateOf of mutableList not updating?

    val checkedList by remember {
        mutableStateOf(MutableList(list.size) { false })
1

There are 1 best solutions below

0
On

I would suggest you to use val checkedList by remember { mutableStateListOf<Boolean> { false }). This helps you better with update operations with view model flows and better code readability Source with example : https://developer.android.com/reference/kotlin/androidx/compose/runtime/package-summary#mutableStateListOf()