17
7
PREFER using Spacer instead of Expanded with an empty Container or SizedBox.
Spacer
Expanded
Column( children: [ Expanded( flex: 2, child: SizedBox(), ), ], )
Column( children: [ Spacer(flex: 2), ], )
To enable the use_spacer rule, add use_spacer under plugins > pyramid_lint > diagnostics in your analysis_options.yaml file:
use_spacer
plugins > pyramid_lint > diagnostics
analysis_options.yaml
plugins: pyramid_lint: <version> diagnostics: use_spacer: true