Issue
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):
- Remove the (blue) left and right padding of the CheckboxListTile
- Increase the width of the text area (I've tried sizedbox, containers, etc with no luck)
Solution
UPDATE: THERE IS NOT 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,
)
Answered By - Uni
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.