Trying to remove flutter debug toolbar in vscode

Viewed 2190

As the title says, I'm trying to remove this toolbar :

enter image description here

1 Answers

VS Code settings

"debug.toolBarLocation": "hidden"

Editing process through the menu and the settings edit form.
File -> Prefernces -> Settings
Copy the text (without quotes) "debug.toolBarLocation" and paste it into the text input field where you see the prompt text "Search settings".

The subform of editing this parameter will appear.

Debug: Tool Bar Location Controls the location of the debug toolbar. Either floating in all views, docked in the debug view, or hidden.

Select a value from the list.

More info: https://code.visualstudio.com/docs/getstarted/settings

Related