dogetv_flutter icon indicating copy to clipboard operation
dogetv_flutter copied to clipboard

A fish-redux example

Results 3 dogetv_flutter issues
Sort by recently updated
recently updated
newest added

文件中的 effect 类中的 action 有多个库该类的问题

dogetv_flutter/pages/tv_page/effect.dart Effect buildEffect() { return combineEffects({ Lifecycle.initState: _init, TVPageAction.onUpdateSource: _onUpdateSource }); } void _init(Action action, Context ctx) async { APIs.getTVChannels(isIPTV: ctx.state.isIPTV).then((groups) { ctx.dispatch(TVPageActionCreator.didLoadAction(groups, ctx.state.isIPTV)); }); } void _onUpdateSource(Action action, Context...