v2.0.0
checkbox_list_tile_more_customizable
अधिक कस्टमाइज़ेबल विवरण वाला CheckboxListTile, जो पारंपरिक flutter CheckboxListTile पर आधारित अधिक कस्टमाइज़ेबल कार्यक्षमता प्रदान करता है।
2लाइक 2930-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
अधिक कस्टमाइज़ेबल विवरण वाला CheckboxListTile।
{"sdk":"flutter"}^1.3.0{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A CheckboxListTile with more customizable details.
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.
CheckboxListTileMoreCustomizable(
value: tmp,
title: Text("CheckboxListTileMoreCustomizable!"),
horizontalTitleGap: 16,
contentPadding: EdgeInsets.symmetric(horizontal: 16),
minLeadingWidth: 40,
minVerticalPadding: 10,
onChanged: (v) {
setState(() {
tmp = v;
});
},
);