sized_box_shrink_expand
使用 SizedBox 的 shrink 和 expand 命名构造函数。
此规则从 Dart 2.16 开始可用。
详情
#适当地使用 SizedBox.shrink(...)
和 SizedBox.expand(...)
构造函数。
当其中一个命名构造函数更简洁地捕捉代码的意图时,应使用 SizedBox.shrink(...)
或 SizedBox.expand(...)
构造函数,而不是更通用的 SizedBox(...)
构造函数。
示例
不良
dart
Widget buildLogo() {
return SizedBox(
height: 0,
width: 0,
child: const MyLogo(),
);
}
dart
Widget buildLogo() {
return SizedBox(
height: double.infinity,
width: double.infinity,
child: const MyLogo(),
);
}
良好
dart
Widget buildLogo() {
return SizedBox.shrink(
child: const MyLogo(),
);
}
dart
Widget buildLogo() {
return SizedBox.expand(
child: const MyLogo(),
);
}
用法
#要启用 sized_box_shrink_expand
规则,请在 analysis_options.yaml
文件中的 linter > rules 下添加 sized_box_shrink_expand
analysis_options.yaml
yaml
linter:
rules:
- sized_box_shrink_expand
除非另有说明,否则本网站上的文档反映了 Dart 3.6.0。页面最后更新于 2024-07-03。 查看源代码或报告问题。