fish-redux
fish-redux copied to clipboard
An assembled flutter application framework.
在DynamicFlowAdapter中buildAdapter, 丢失了Listview中itemBuilder属性原本的index形参, 请问在adapter.itemBuilder返回的Widget中如何得到这个index
My greetings. I have an actions in my main app page: ``` import 'package:fish_redux/fish_redux.dart'; enum Actions{ changeIndex, changeAppBarState, toggleDrawerPermission } class ActionsCreate{ static Action changeIndex(int value) => Action(Actions.changeIndex, payload: value);...
刚用fish redux不久。 看了下文档,也简单的用Adaptor实现了一下一个列表。请问Adaptor是通过什么样的方式带来的性能提升呢,希望增加点具体的文档和说明。 还有,如果是普通的一个列表,有必要用adapter么? 还有关于Widget和Component,很多情况不知道到底该封装成什么。是不是交互性不多(用于展示的值不改变)的直接封装成Widget就行了,交互性比较多的才用Component ? 希望得到回答,谢谢..
就是addmarker这个操作放在哪?我有点晕,感觉哪都行
Hi, the links to the Fish Redux documentation are currently not found. Also, there seems to be multiple versions of docs, with different content in each of them. Can you...
 这里可以监听到, 可以打印出值, 是改变后的
**Describe the bug** A clear and concise description of what the bug is. Show the code you wrote as completely as possible. ```dart /// your code here ```  **To...
如题。使用fish redux,怎么从didUpdateWidget生命周期中获取到外面的参数呢。 谢谢。
数据刷新间隔
通过reduce刷新的数据, 有一秒的间隔, 如果通过Timer, 间隔在500毫秒去更新数据, 会缺失中间的一次, 间隔再小可能会出现不更新的情况 