Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trying to remove flutter debug toolbar in vscode

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

enter image description here

like image 831
beauchette Avatar asked Jul 01 '19 13:07

beauchette


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

like image 109
mezoni Avatar answered Sep 27 '22 20:09

mezoni