FLUTTER ECOSYSTEM

Playhi/checkbox_list_tile_more_customizable

一個具有更多自訂細節的 CheckboxListTile。

checkbox_list_tile_more_customizable 專案封面
Stars
2
Forks
0
最近推送(UTC)
2020年7月13日
專案狀態
未封存
Playhi GitHub avatar
GITHUB User

Playhi ↗

Busy~ Busy~ Busy~ :joy:

語言DartHTMLKotlinSwiftObjective-C

此儲存庫發佈的套件

使用的依賴

依賴清單 3 項

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

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;
    });
  },
);

Example

Example