molikto
04/03/2020, 8:24 AMval s = state { 1 }
Text(s.value.toString())
remember {
s.value = s.value + 1
}
it seems on dev08, updating a mutable state in the same frame will not triger recomposition? Is this a bug? (expected text should be "2")Andrey Kulikov
04/03/2020, 9:58 AMmolikto
04/03/2020, 10:58 AMLeland Richardson [G]
04/03/2020, 3:14 PM