Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 25, 2022 08:09 pm GMT

BEST VSCode Settings for Flutter Developers

BEST VSCode Settings for Flutter Developers

Flutter is a UI toolkit from Google which lets you build apps for any screen - android, ios, windows, linux, mac, and more! It has seen an outstanding amount of love and support from users all around the world, over a very short period of time. In this article, I'll try my best to present the best VSCode settings, custom snippets, and extensions for flutter that I managed to find/invent over the period of my professional experience. I hope you find something useful.

Who Am I

My name is Ikramul Hasan and I worked as a flutter trainer for the App Development Training program organized by the ICT Division, Government of Bangladesh. These are the setup I made all my students go through. Currently, I'm working as a Senior Application Developer for a multinational company called MakeBell.

Best Settings

First of all, although most of you know how to get to the settings page in VSCode, I'd still like to start by showing the process to anyone unaware.

How do I get to Settings?

There are two primary ways to get to VSCode settings.

  1. Launch VSCode and click on the gear icon at the bottom left side of your side panel. Then click on Settings
  2. Press Ctrl+Shift+P on Windows or Cmd+Shift+P on Mac to launch the command palette, type settings, and click on the Open Settings (UI) option.

2022-04-25 23_17_38-Greenshot.png-mh.png

Let us now start changing the settings.

Enable format on save

Perhaps the most important settings for flutter. Let flutter format your dart code on save.

  1. Start by searching Editor: Format On Save in the search bar above
  2. Enable the option.It should look like this:

2022-04-26 00_14_11-Epic Pen Content Surface_ __._DISPLAY1.png

Enable bracket pair colorization and guides

Everyone working with flutter knows how important it is to distinguish between brackets. Previously, we needed to achieve this using an extension called bracket pair colorizer. But now, VSCode supports this feature natively and it performs much better than the extension. Here are the steps:

  1. Search for bracket pair in the search bar above
  2. Check the tickmark on the option Editor Bracket Pair Colorization. If it is already enabled, don't change it.
  3. Set Editor Guides: Bracket Pairs to true from the dropdown.
  4. Then check the option named Editor Guides: Highlight Active Bracket Pair. This will enable the guides around the brackets.

After all these steps, it should look like this:

2022-04-25 23_36_46-Epic Pen Content Surface_ __._DISPLAY2.png

And your brackets? Much cooler.

2022-04-25 23_29_33-Epic Pen Toolbar.png

Automatically rename a class name after changing its filename

This tells flutter whether to rename files when renaming classes with matching names (for example renaming 'class Person' inside 'person.dart'). If set to 'prompt', will ask each time before renaming. If set to 'always', the file will automatically be renamed.

  1. Search for Dart: Rename Files With Classes
  2. Set it to prompt in the dropdown.

Change the default organization name

When you create an app using the command palette in VSCode, the default organization looks something like this: com.example. If you want to change it to something like com.your_org then enable this feature:

  1. Search for Dart: Flutter Create Organization.
  2. Click on Edit in settings.json
  3. Change the line "dart.flutterCreateOrganization": "com.example", to this "dart.flutterCreateOrganization": "com.your_org", If the line is not present, just add it yourself.
  4. Now every time you create an app from VSCode, it will have that custom org name.

Enable UI guides

ui_guides.png
This tells flutter whether to enable the UI guide. UI guides are the white lines you see in the screenshot above.

  1. Search for Dart: Preview Flutter Ui Guides and enable it.
  2. Search for Dart: Preview Flutter Ui Guides Custom Tracking and enable it.

Note: Both of these features are experimental, and eat too much resources. If you have a particularly slow PC, I recommend disabling it.

Automatically add const modifier

Flutter now includes linting by default in every flutter app. As a result, if you do not add the const modifier, it shows a warning. This can become very messy and adding const manually can become very tedious. To add const modifier automatically every time you save, do the following:

  1. Open the command palette and type settings
  2. Select Open Settings (json)
  3. Add this code at the bottom of the file:
"editor.codeActionsOnSave": {     "source.fixAll": true, }

Enable settings sync

After all these efforts of creating the best settings, you don't want to lose them after every new VSCode installation. Enabling settings sync will let you sync your settings using your GitHub account. As a result, if you install VSCode on a brand new PC and log in to your GitHub account in VSCode, all these settings will be automatically synced for you. This means you need to do these steps only once.

  1. Click on the account icon on the bottom left of the sidebar.
  2. Login using your GitHub account.
  3. Make sure you see 'Settings sync is on' in the menu.

2022-04-26 00_25_11-Greenshot.png-mh.png

Thank you for coming this far

Let me know if I missed some settings. You'll find all my socials here on my portfolio site


Original Link: https://dev.to/ikramhasan/best-vscode-settings-for-flutter-developers-1m59

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To