Get updated State outside a Widget tree with Redux
问题 Is it possible to get an up-to-date state from the Store outside the Widget tree? In Provider, you can easily do that by calling Provider like this and the state will update if there is any change. Provider.of<WelcomeBloc>(context) But when I call: StoreProvider.of<AppState>(context).state.currentPage; I just get the current state but it doesn't update on changes (or I am doing something wrong there) In that case, I need to use that call in a block which updates on changes... what in my