Currently, Dart Devtools opens as a tab in VSCode. I want it to go back to opening in Chrome as it did in previous versions of Flutter.
Asked
Active
Viewed 4,943 times
4 Answers
8
Update VSCode to the newest Version.
Update Flutter
Now run your Project and then click [ctrl] + [alt] + [d] for running dart devtools. VSCode is asking you where you wish to open DevTools.

Twelve
- 236
- 1
- 5
-
1Thanks! I also found that clicking on the `Dart DevTools` option on the status bar also gives you the same options – Aditya Nigam Oct 11 '20 at 11:53
5
Do not bother about it mate, just add this line on settings.json
"dart.embedDevTools": false
Then you will get again DevTools on Chrome. Just shortcode: Ctrl + Alt + D.
That's it.

Alexnorie.ga
- 51
- 1
- 5
-
-
Double check your json's structure from settings.json file because installing several extensions may damage the structure itself and vsCode just warn you and sadly do not fix it for you. – Alexnorie.ga May 08 '22 at 17:35
2
In your terminal, run:
dart devtools
It will open Flutter Devtools page in your default browser. When you start an application is should print an id starting and ending with ws. This id will be used to connect devtools to the app

Rongix
- 21
- 2
2
"dart.embedDevTools": false
is not relevant anymore, instead you should use:
"dart.devToolsLocation": "external"

Rmk930
- 21
- 1