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

```dart class HomeListComponent extends Component { HomeListComponent() : super( effect: buildEffect(), reducer: buildReducer(), view: buildView, dependencies: Dependencies( adapter: NoneConn() + HomeListAdapter(), slots: { }),); } class HomeListAdapter extends SourceFlowAdapter {...

**Is your feature request related to a problem? Please describe.** I'm always frustrated when rendering the view widget after an async call see [this](https://github.com/o1298098/Flutter-Movie/blob/f3f281282e1c3ac7eca5d21b427b45ea68d67dc6/lib/views/checkout_page/effect.dart) example code, ```dart ctx.dispatch(CheckOutPageActionCreator.loading(true)); ``` I...

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...

用fish redux做了个开源天气APP 可以作为fish-redux参考示例。此项目基于和风天气的OpenWeatherPlus制作,纯Flutter实现,主体功能已经完成,边边角角的功能陆续添加中,欢迎交流 项目地址: https://github.com/danieldai/OpenWeatherPlus-Flutter APP截图:

你好,我这里遇到这样一个问题: 因为要多处用一个widget,在fish-redux中封装了一个CustomView组件, 里边的数据源用到fish-redux的state中的list,当fish-redux中数据源list改变时CustomView不刷新, 请问这个要怎么解决?谁知道麻烦帮忙看下,谢谢. class CustomView extends StatefulWidget { final List dataList; ..............

我正在使用这个库开发app,在文档不齐全的时候只能去找demo,然后结合自己的理解去开发。深深感觉到文档对一个开源库的重要性。 我可以为这个项目贡献一部分时间。 希望能pr一个新分支作为文档的开发分支。

help wanted

我通过 page.enhancer.append添加了一个全局的effectMiddleware,dispatch一个action的时候 我发现同一个page的effectMiddleware为什么走了两次

有父页面`GoodsPage`,PageView.builder来做tab切换的列表页面,包含了`GoodsListPage`页面, ```dart PageView.builder( key: const Key('pageView'), itemCount: state.tabsData.length, onPageChanged: (int index) { state.tabController.animateTo(index); dispatch( GoodsActionCreator.updateTabIndexAction(index)); }, controller: state.pageController, itemBuilder: (_, int index) { var param = GoodsListPageParam( index: index, categoryId:...