The To-Do Application
In this chapter, we’ll focus on building a simple to-do application. This should familiarize you with all the basics that you’ve been taught in the previous chapters. It will be an application that will make use of a data model, the page builder, and actions for our logic. We won’t use any kind of authentication in this application. We’ll focus on that in our next project.
This chapter is divided into the following parts:
- Setting up the data model
- Building our to-do overview page
- Adding a to-do item to our list
- Our first interaction
After this chapter, you should be able to build a simple application yourself, where you can store data and configure interactions with your components. In the next chapter, we’ll add functionality for updating and deleting data in this application. While building this application, you’ll also get more familiar with some other options in the page builder and the...