简体   繁体   中英

Is there an easy way to add Const as much as possible in Flutter?

I have read the article here about Final and Const . I also saw many example code from flutter team use many const as they can (just read the example of todos list from package river_pod), and some article about how compile-time constant widget good for performance ( like this ).

Is there any easy way let the IDE plugin/lint add const Widget/Variable as much as it can automatically? Or give some hint like This Widget/Variable' is better to use with const .

I checked the lint package here and read Effective Dart:Style , but didn't see any information about it.

Thanks for help!

I add some example cases:

ListView(
  padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 40), // here
  children: [ ...
    const SizedBox(height: 42), //here
    const Image( //here
      width: 100,
      height: 100,
      image: AssetImage('assets/logo.png'),
    )
    ...

or even a class

Container(
  child: const Toolbar(), //here
...

class Toolbar extends HookWidget {
  const Toolbar({Key key}) : super(key: key); //here
  ...

It's actually quite simple. You should open analysis_options.yaml and then under linter specify the required rules.

...
linter:
  rules:      
    - prefer_const_declarations

You can check the rules here: https://dart-lang.github.io/linter/lints/index.html

In addition to linting, you can fix most cases of missing or redundant const automatically by running dart fix --apply<\/code> . Run dart fix --dry-run<\/code> first to see what will change.

"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM