• Subscribe
  • Which tools do you rely on for debugging in Flutter or React Native, and why?

    Karthik M S N
    7 replies
    What are the challenges or gaps you face in these tools?

    Replies

    Julia Klemenc
    Flipper is my go to for React Native; it’s excellent for network and database debugging but sometimes struggles with version compatibility.
    Share
    Karthik M S N
    @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?
    Haider Murtaza
    I use Dart DevTools for Flutter it's great for widget inspection but can be slow with large apps.
    Share
    Karthik M S N
    @haider_murtaza Understood. is it for dev environment or production debugging?
    Sandy Leventh
    Visual Studio Code's debugger works well for both Flutter and React Native. It’s very useful but has a tricky setup for beginner's
    Share
    Karthik M S N
    @sandy_leventh thanks for sharing this. Are there any framework specific gaps or debugging needs that VS doesn't currently solve? I mean how do you debug issues in production?
    Nicole Park
    Launching soon!
    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.