Reputation: 3730
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 .
Upvotes: 1
Views: 52
Reputation: 4666
You can add this setting in settings.json
"editor.foldingStrategy": "indentation"
This will add the ending parenthesis below the line :
Upvotes: 1