-
Notifications
You must be signed in to change notification settings - Fork 215
Add link to redux_persist #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hey, way cool! Thanks for adding to the community :) I like the direction of the library... glad you've made the base classes abstract, making it easy to plug in different storage options. Happy to link to the lib. There are a couple things I noticed when I checked it out:
|
Thank you very much for the feedback, as a new Dart/Flutter dev it helps to get guided a bit. |
@Cretezy Ah, I must have pulled down an older copy before ya added the analysis options! One thing I'd recommend: Putting on not only strong mode, but the additional options you see linked in the sample above. It shows a few type errors, which will cause ya problems for Dart 2 support (learning that the hard way haha, thought strong mode was strong enough!). Great work overall :) Thanks again! |
Alright I got all the type errors fixed up! I understand the errors better now, thank you! I did almost all the changes you've recommended in v0.5.0 (Cretezy/redux_persist@6b305b0). Next thing to tackle is tests, and migrations! |
Heck yah, nice work! Thanks for taking in the feedback and responding in such top form :) Once you get those tests in place, hit me up and I'll pop a link in the readme! |
Added some tests! |
@Cretezy Cool, thanks for taking all the feedback and making such good improvements! I'll pop a link into the README :) One more piece of feedback: It looks like the Flutter side could still use some tests as well! We've recently added some recipes to the Flutter Cookbook that demonstrates how to test shared_preferences and file io if you want to try your hand at it: https://flutter.io/cookbook/persistence/key-value/ |
Yep, Flutter and Web tests are coming for v1.0! I'm also going to create a more generic FileStorageEngine! |
Pushed up an addition to the README. Thanks again for your contributions :D :D :D |
Hey, this is my first day of Dart and I found there was no way to persist to a redux store without writing the code yourself all the time. I made a small library called redux_persist to help with that.
I'd like to add a link to the library in the README, as this is probably a common pattern with flutter_redux!
Also, if you have a few minutes to space, check out the library and let me know of any issues you see on it! Thanks for flutter_redux!
The text was updated successfully, but these errors were encountered: