I want to use GetX in my flutter project for state management. I don't know how I can achieve dependency injection with GetX though. Is it ok to use Get_it along with GetX in the same project? I feel like doing so makes the code cluttered. Or should I create a binding class with GetX and use it as initialBinding to achieve dependency injection?
I want to be able to inject dependencies into non-view classes. What is the best practice for this?
Using GetX + Get_it or is it possible with GetX alone?
Thanks