dropbox / kaiken

User scoping library for Android applications.
Apache License 2.0
69 stars 11 forks source link

Add a Store/DB/API example with Snackbar effects #154

Open viceversus opened 2 years ago

viceversus commented 2 years ago

This diff adds a lot of new functionality to the logged in example.

It will load your favorite Ghibli Films from the database as long as you have added any on load. If you go to the form screen, you can add your favorite films. The films are hitting a remote API. You can add an entry to this list as well.

This diff utilized Store for remote/local sync'ing, Room for local storage, and Retrofit to hit the API. We are using effects to propagate the Snackbar.

Next up, some testing and clean up.