v2.0.0
checkbox_list_tile_more_customizable
従来のFlutter CheckboxListTileに基づき、よりカスタマイズ可能な詳細と機能を提供する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;
});
},
);