I\'m seeing following happen when working in intelliJ IDEA with Dart based project
All comments there i.e // AppBar
are auto generated, I assume fo
And in the vs code editor, change this setting to false
"dart.closingLabels": true
You can find this setting easily. Go setting and search(Ctrl+f) dart.closingLabels
If you want to customize the closing label color, you can do this. In vscode, open your settings.json
file and set this setting
"workbench.colorCustomizations": {
"dart.closingLabels": "#FF5733"
},
The checkbox is in Settings (Preferences) | Editor | General | Appearance, toggle 'Show closing labels in Dart source code'.