Chapter 8: Using GetX, GetIt, and Binder to Update the Cart Application
In this chapter, we will be looking into how to create a cart application using the following approaches, which were studied in the previous chapters:
- GetX
- GetIt
- Binders
We will be going through all the concepts and code snippets discussed in Chapter 5, Executing Distinctive Approaches like GetX, GetIt, and Binder. We are going to create the same screens we created in the previous chapter but with an updated technique. So, technically the output of every technique will be the same (a cart application where you can add/remove items from the cart) but with entirely different code running behind each technique.
By the end of this chapter, you will be able to create Flutter apps from scratch using the three state-management techniques mentioned previously. You will also be provided with an optional challenge to get your brains...