I am building a flutter application and I want to use a stateful widget in my project and want to use the getx library for state management. I was wondering if there is going to be any performance
Asked
Active
Viewed 3,236 times
2
-
no performance issue whatsoever. – Francis Nduba Numbi Mar 24 '22 at 21:07
1 Answers
7
No performance issues at all. Preferring using stateful widgets with pages using textformfield even it have GetX.
Update : Don't use GetX for overall production-level projects. I clearly not recommending the package as it is been made issues over production, but you can use for minimizing code in some parts, Navigation or in your personal projects.
Refer the Reddit discussion to know more cons about GetX.

Jagal R Nath
- 316
- 5
- 14
-
1Thanks, Sree I am now using getx controller which I am injecting into the stateful widget. – Josh Cipher Mar 27 '22 at 09:41