I have a quick question about state management in Flutter. I am into GetX for a while especially when it comes to state management, but it makes me wonder what's actually faster - GetX state management or Bloc? I am talking only about state management and no other additional possibilities that comes with GetX. Is the difference in the speed between those two packages even that big enough that should matter?
Generally, the performance of state management doesn't matter that much, it's a small fraction of the time spent in Flutter's render pipeline.
The DevTools performance view is an excellent way of illustrating this.