1

How to open Flutter DevTools in a separate window when using Visual Studio Code, so one can debug on a second monitor?

davdog00
  • 93
  • 2
  • 13

2 Answers2

3

To do this, go to VS Code settings (ctrl + ,) and type embed devtools: VSC settings screenshot

Unchecking this will result in DevTools being opened in Chrome.

davdog00
  • 93
  • 2
  • 13
2

This option would accomplish that.

"dart.devToolsLocation": "external"
Ramin Mousavi
  • 486
  • 1
  • 5
  • 19