Evandro Pomatti
Evandro Pomatti

Reputation: 15094

Can't find Flutter Inspector / Toggle Debug Paint in Visual Studio Code

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.

enter image description here

Upvotes: 10

Views: 9896

Answers (1)

Evandro Pomatti
Evandro Pomatti

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:

enter image description here

Upvotes: 16

Related Questions