mobxjs / mobx.dart

MobX for the Dart language. Hassle-free, reactive state-management for your Dart and Flutter apps.
https://mobx.netlify.app
MIT License
2.39k stars 310 forks source link

global reaction is not working #1004

Closed subzero911 closed 2 months ago

subzero911 commented 2 months ago

I setup a global reaction, but it never fires. Maybe it's not working when being declared not inside a class?

image

Store:

image
subzero911 commented 2 months ago

I got it, that's because global final is lazy. So if someone has never accessed this variable, it has never been initialized.