Home > database >  Code Formatter not working good for Flutter VS Code
Code Formatter not working good for Flutter VS Code

Time:06-25

I am unable to format my flutter code properly.

CodePudding user response:

you must have missing this code in your setting.json

{
    "editor.defaultFormatter": "Dart-Code.dart-code",
    "editor.formatOnSave": true
}

kindly add hope so problem solved

  • Related