invoice/lib/redux/app/loading_reducer.dart

12 lines
325 B
Dart

import 'package:redux/redux.dart';
import 'package:invoiceninja/redux/product/product_actions.dart';
final loadingReducer = combineReducers<bool>([
TypedReducer<bool, ProductsLoadedAction>(_setLoaded),
TypedReducer<bool, ProductsNotLoadedAction>(_setLoaded),
]);
bool _setLoaded(bool state, action) {
return false;
}