I'm looking to remove this padding around my row of CheckboxListTiles, but haven't found any information on how to do this without making my own version of a checkbox.
Is there any way to (using the CheckboxListTile):
UPDATE: There is no need to use ListTitleTheme
anymore. contentPadding
is now one of CheckboxListTile
's properties. We can now remove the default padding
like this:
CheckboxListTile(
contentPadding: EdgeInsets.zero,
)