Which tools do you rely on for debugging in Flutter or React Native, and why?
Karthik M S N
5 replies
What are the challenges or gaps you face in these tools?
Replies
Haider Murtaza@haider_murtaza
I use Dart DevTools for Flutter it's great for widget inspection but can be slow with large apps.
Share
@haider_murtaza Understood. is it for dev environment or production debugging?
Sunrise: Guided Journaling & Mindfulness
When I write codes in the local, I use Dart/Flutter DevTools extension in VSCode. I think using an HTTP inspector in the staging environment would be helpful for debugging, but I haven't set it up yet.
Flipper is my go to for React Native; it’s excellent for network and database debugging but sometimes struggles with version compatibility.
@julia_klemenc Got it.. is it for debugging in dev environment or can you also use it to catch production bugs that users are facing and solve them?