Taki
Taki

Reputation: 3730

visual studio code not showing full paratheses using flutter

I'm using visual studio code to build flutter applications but there is something that i don't like which is that when i close a snippet of code , it dosn't show both paranthese like in android studio , I'm not sure which setting is responsible for that , i would like to be able to move to new line without having to expand the whole snipper code to find from where to move to new line to create new widget , anyone help is appreciated , thank you .

enter image description here

Upvotes: 1

Views: 52

Answers (1)

esentis
esentis

Reputation: 4666

You can add this setting in settings.json

"editor.foldingStrategy": "indentation"

Screenshot

This will add the ending parenthesis below the line :

Screenshot 2

Upvotes: 1

Related Questions