https://kotlinlang.org logo
#compose
Title
# compose
c

curtjrees

03/04/2021, 11:53 AM
I’ve ran into an issue where I believe my Composable should be recomposed when I change a parameter But it seems to only be recomposed on the first change and not subsequent ones Can anyone see an issue with my code? (in thread)
g

gildor

03/04/2021, 12:48 PM
It looks that you update calendar only once, after that calendar instance is the same, you just mutate it
c

curtjrees

03/04/2021, 1:01 PM
Ah that makes complete sense, thanks!