pitriq / flutter_redux_boilerplate

Flutter application boilerplate, with Redux included
219 stars 36 forks source link

authReducer return values #9

Closed alexandropavlov closed 5 years ago

alexandropavlov commented 5 years ago

Hey man! Сool project. I'm new in Flutter, and trying to figure out how to implement redux in my project. So it was worth for me to see this example.

I noticed, that in reducers/auth_reducer.dart in reducers you return

new AuthState().copyWith(...

but, shouldn't it be

auth.copyWith(...

?

pitriq commented 5 years ago

Hey there! You're right man, I totally overlooked that one since it wasn't actually breaking anything in this particular case 😁.

Gonna make sure to update it, thanks!