Hi everyone !
I'm trying to use
Kotlin Redux to keep the state of my app global. The only problem is that I have a nullable value in my store and changing it does not recompose my application.
Changing an object property recompose the component displaying it, but going from null to something does not 😕
I've logged before dispatching my action (right value), after dispatching it (state has changed) and in the component displaying it (no log).
Forcing the recomposition by hiding the component and showing it again works, but I feel terrible doing this 😅
Does anybody have an idea ? Maybe shouldn't I use Kotlin Redux ?