标签: flutter
最简单的方法是什么?我希望空间实际上为零。可能吗?
问候
答案 0 :(得分:0)
尝试使用 contentPadding 参数:
contentPadding
CheckboxListTile( contentPadding: EdgeInsets.all(0), ... )
或者您可以将 CheckBox 与其他小部件结合使用。这将为您提供类似的东西,您可以自定义空间。
CheckBox
Row( children: [ CheckBox(...), Text(...), ], )