0 purchases
checkbox list tile more customizable
checkbox_list_tile_more_customizable #
A CheckboxListTile with more customizable details.
Introduction #
This project is a modified version of Flutter CheckboxListTile,
and provides more customizable functions,
with these functions,
you can set the horizontalTitleGap, minVerticalPadding, minLeadingWidth, contentPadding.
Usage #
CheckboxListTileMoreCustomizable(
value: tmp,
title: Text("CheckboxListTileMoreCustomizable!"),
horizontalTitleGap: 16,
contentPadding: EdgeInsets.symmetric(horizontal: 16),
minLeadingWidth: 40,
minVerticalPadding: 10,
onChanged: (v) {
setState(() {
tmp = v;
});
},
);
copied to clipboard
Example #
Example
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.