fish-redux icon indicating copy to clipboard operation
fish-redux copied to clipboard

An assembled flutter application framework.

Results 106 fish-redux issues
Sort by recently updated
recently updated
newest added
trafficstars

在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 ? 希望得到回答,谢谢..

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...

![image](https://user-images.githubusercontent.com/39234003/76718396-a37c0200-6771-11ea-9ce6-9a8bb174f834.png) 这里可以监听到, 可以打印出值, 是改变后的

**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 ``` ![image](https://user-images.githubusercontent.com/5879146/74101586-53a88a80-4b76-11ea-86be-da3cf84e0a80.png) **To...

如题。使用fish redux,怎么从didUpdateWidget生命周期中获取到外面的参数呢。 谢谢。

通过reduce刷新的数据, 有一秒的间隔, 如果通过Timer, 间隔在500毫秒去更新数据, 会缺失中间的一次, 间隔再小可能会出现不更新的情况 ![image](https://user-images.githubusercontent.com/39234003/82006392-467dc900-969a-11ea-839f-cfbcac842e87.png)