v2.0.0
checkbox_list_tile_more_customizable
一個具有更多可自訂細節的 CheckboxListTile,提供更多的可自訂功能,基於傳統的 Flutter CheckboxListTile。
2喜歡 29近 30 天下載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;
});
},
);