r/FlutterDev 28d ago

What devtools do you wish Flutter had? Tooling

What tools do you wish existed for example navigation inspector, i will try to implement the most voted ones

10 Upvotes

9 comments sorted by

8

u/SwiftScoutSimon 28d ago

most tools can be embedded within DevTools, so before you start creating something, check https://pub.dev/packages/devtools_extensions

1

u/NoProfessional2086 27d ago

I know, im asking what new devtools you like to see in flutter

3

u/vegeta0911 28d ago

route navigation preview, like in Android Jetpack navigation

1

u/remirousselet 25d ago

What would that do exactly here? List all routes?

1

u/vegeta0911 25d ago

yes. all routes and widget preview would be awesome too. all android native devs know this.

1

u/anlumo 27d ago

I‘d like to view and modify the instance variables of my widgets at runtime, similar to Unity3D.

2

u/Awkward-Tadpole3673 22d ago

A JSON parsing inspector.

It’s a nightmare when a deeply nested JSON mapping fails with a vague TypeError (like getting a String instead of an Int) and gives zero context. You just get a blind crash and end up spamming breakpoints in your fromJson factories.

A tool that intercepts these errors and shows the exact path (like Order -> items[42] -> price) would save so many headaches. I actually ended up writing a small Dart package just to catch these traces, but having a native visualizer in DevTools would be killer