`androidx.compose.runtime.stateFor` has been remov...
# compose
d
androidx.compose.runtime.stateFor
has been removed in
alpha07
. What is the replacement for that?
Is it safe to assume that
Copy code
var foo by stateFor(v) { value }
and
Copy code
var foo by remember(v) { mutableStateOf(value) }
are essentially the same?
👌 1
l
yes, exactly
❤️ 1
d
Got it, thank you!