Home > Enterprise >  How to find recommended dart and flutter settings in VS Code
How to find recommended dart and flutter settings in VS Code

Time:04-15

I was setting up VS code for flutter and I accidentally gave "NO" for the following recommendation

enter image description here

I tried to find this manually in the settings but I wasn't able to find it. How do I solve this.

CodePudding user response:

Steps by Step Solution:

Step 1 : open VS Code

Step 2 : Open command palette ctrl shift p

Step 3 : type Dart: Use Recommended Settings

Screenshot of VS Code Command Palette for recommended settings for Dart

Note : most probably it will only show when you have a dart file open (VS Code does this to prevent cluttering in command palette)

references : https://dartcode.org/docs/recommended-settings/

  • Related