sized_box_for_whitespace
SizedBox
for whitespace.
Details
#Use SizedBox
to add whitespace to a layout.
A Container
is a heavier Widget than a SizedBox
, and as bonus, SizedBox
has a const
constructor.
BAD:
dart
Widget buildRow() {
return Row(
children: <Widget>[
const MyLogo(),
Container(width: 4),
const Expanded(
child: Text('...'),
),
],
);
}
GOOD:
dart
Widget buildRow() {
return Row(
children: const <Widget>[
MyLogo(),
SizedBox(width: 4),
Expanded(
child: Text('...'),
),
],
);
}
Enable
#To enable the sized_box_for_whitespace
rule, add sized_box_for_whitespace
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- sized_box_for_whitespace
If you're instead using the YAML map syntax to configure linter rules, add sized_box_for_whitespace: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
sized_box_for_whitespace: true
Was this page's content helpful?
Thank you for your feedback!
Provide details Thank you for your feedback! Please let us know what we can do to improve.
Provide details Unless stated otherwise, the documentation on this site reflects Dart 3.8.1. Page last updated on 2025-03-07. View source or report an issue.