• Subscribe
  • 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
    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?
    Nicole Park
    Sunrise: Guided Journaling & Mindfulness
    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.
    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?