Reputation: 15094
Trying to find the option Toggle Debug Paint or Flutter Inspector with no success in VS Code.
I have Flutter and Dart extensions installed on version 2.24.0.
Upvotes: 10
Views: 9896
Reputation: 15094
The command "Flutter: Toggle Debug Paint" was replaced with "Flutter: Inspect Widget" in version 2.17.0 but starting with version 2.24.0 it was also replaced with Dart DevTools option which is the new and current feature for debugging and inspecting Dart/Flutter.
In the command palette:
>Dart: Open DevTools
Note that the debug session must be active in order for the option to be available:
Upvotes: 16