Jetpack Compose系列 | remember
jetpack compose 的remember
Composable functions can store local state in memory by using remember, and track changes to the value passed to mutableStateOf. Composables (and its children) using this state will get redrawn automatically when the value is updated. We call this recomposition.
大致的意思就是remember方法会把本地的状态保存在内存中 并且追踪传入的mutableStateof参数 当参数发生变化的时候 每个使用该状态的composable都会redrawn(重新绘制) 其中包括它的子composable
共有 0 条评论