flutter_built_redux
flutter_built_redux copied to clipboard
when changes state and widget, but state reuse, the new ui won't update.
e. UserInfo extends StoreConnector<....>{ final String userId; UserInfo(this.userId); connect(){...} build(){....} }
when refresh list of UserInfo, ui won't update. we should override the didUpdateWidget, force run the connect function, and setState