Chapter 5: Executing Distinctive Approaches Like GetX, GetIt, and Binder
In the previous chapter, we studied state management approaches adopted from the React framework, which included Redux and MobX.
In this chapter, we will discuss some distinctive state management approaches that are relatively simpler, easier, and require less understanding of the underlying architecture. We will learn about GetX, GetIt, and Binder to manage states in Flutter. We will also look at how these approaches are utilized in code with actual implementations. We will look into the following in this chapter:
- GetX – simplified reactive approach
- GetIt – no
BuildContext
required - Binder – separation of concerns
This chapter is going to build up your understanding of how these distinctive approaches can be used to detect and track the changes inside a Flutter application. By the end of this chapter, you should be able to do the following:
- Understand how...