提问人:Slava 提问时间:7/6/2023 最后编辑:AbhimanyuSlava 更新时间:10/30/2023 访问量:56
mutableList 的 MutableStateOf 未更新
MutableStateOf of mutableList not updating
问:
为什么我的 mutableList 的 mutableStateOf 没有更新?
val checkedList by remember {
mutableStateOf(MutableList(list.size) { false })
答:
1赞
Goutham Reddy
7/19/2023
#1
我建议你使用.
这有助于您更好地使用视图模型流进行更新操作,并提高代码可读性
示例来源 : https://developer.android.com/reference/kotlin/androidx/compose/runtime/package-summary#mutableStateListOf()val checkedList by remember { mutableStateListOf<Boolean> { false })
评论