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