This commit is contained in:
2020-12-23 00:43:59 -05:00
parent 0fd880f57b
commit 86c845b49b
54 changed files with 3638 additions and 107 deletions

View File

@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
import 'package:flutter_wisetronic/store/actions.dart';
import 'package:redux/redux.dart';
final contextReducer = combineReducers<BuildContext>([
TypedReducer<BuildContext, UpdateContext>(_updateContext)
]);
BuildContext _updateContext(BuildContext context, action) {
return action.context;
}