Examples
In the relm4-store-examples/examples
you can find code for examples shown here. If it's the final code for the example it's placed in the folder ending with a number. For simple todo application it can be for example todo_2
for the final version from chapter 2. If it's some kind of variation about the code for the application it's suffixed with extra description. For example todo_2_single_scroll
shows custom scrollbar being used to navigate a long list.
Chapter summary
- Chapter 1 Really simple todo application which can show up to 10 tasks.
- Chapter 2 Really simple todo application (from chapter 1) extended to use pagination. This allows to remove a limitation of
10 tasks
to be seen. - Chapter 3 We will add sorting into the todo application from chapter 2.
Things with undecided order
- Data window behavior StoreViews behavior. How to make view behave in the presence of the new data. Really simple todo application from chapter 2 extended to showcase different possibilities