alibaba / fish-redux

An assembled flutter application framework.
https://github.com/alibaba/fish-redux
Apache License 2.0
7.33k stars 843 forks source link

关于如何定义一个全局共享的store #43

Closed mrdaios closed 5 years ago

mrdaios commented 5 years ago

比如说登录成功后,需要把用户信息共享在多个界面访问,能访问全局app的配置吗?类似store.of(context)

zjuwjf commented 5 years ago

类似store.of(context)?可以自定义一个Provider,来用来读写全局的配置信息。fish-redux 目前更聚焦做页面内的最佳解决方案。

yohom commented 5 years ago

通过根widget继承Page的方式来实现全局的store是否可行?@zjuwjf

zjuwjf commented 5 years ago

通过根widget继承Page的方式来实现全局的store是否可行?@zjuwjf

在设计上Component或者Page并不是Widget。它是一个容器的概念,其中Widget是它UI的表达的部分。

mrdaios commented 5 years ago

好的,谢谢