Go to File -> Preferences -> Settings -> Extensions
Find and click "Edit in settings.json"
------------------------OR------------------------
Hit CTRL + SHIFT + P and type "Open Settings (JSON)" and click the matching entry
# 1. Press F1 or Ctrl + Shift + P and search for
"Open Keyboard Shortcuts"
# 2. Type and search
@command:workbench.action.openSettingsJson
# 3. Set your desired shortcut for "Preferences: Open User Settings (JSON)".
# Is recommended to use/replace the default Setting editor UI shortcut:
Ctrl+,
# Alternative method: Replaces both Setting editor UI shortcut
# and File > Preferences > Settings with settings.json
# 1. Search and open settings.json file pressing F1 or Ctrl + Shift + P
# Add
"workbench.settings.editor": "json",
# 2. Now you can use File > Preferences > Settings or settings shortcut
Ctrl+,
// In settings.json : comfort when coding
{
"editor.minimap.enabled": false,
"files.autoSave": "afterDelay",
"workbench.iconTheme": "material-icon-theme",
"dart.openDevTools": "flutter",
"workbench.colorTheme": "Dracula", // can change for theme that you have downloaded extension
"editor.formatOnSave": true,
"dart.previewFlutterUiGuides": true,
"editor.codeActionsOnSave": {
"source.fixAll": true // this great for indent code on SAVE
},
"dart.flutterCreateOrganization": “com.google”, // your identifier : use for connect iOS
"dart.debugExternalPackageLibraries": true,
"dart.debugSdkLibraries": false,
"tabnine.experimentalAutoImports": true, // AI : auto suggestion code
}