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