More redux work

This commit is contained in:
vjrj 2018-06-27 22:29:54 +02:00
parent 69428c5d96
commit 5d947f9577
14 changed files with 170 additions and 88 deletions

View file

@ -1,3 +1,5 @@
import 'actions.dart';
bool loadingReducer(isLoading, action) {
if (action is FetchYourLocationsAction) return true;
return isLoading;
}