# checkbox_list_tile_more_customizable **Repository Path**: playhi/checkbox_list_tile_more_customizable ## Basic Information - **Project Name**: checkbox_list_tile_more_customizable - **Description**: 主库:https://github.com/Playhi/checkbox_list_tile_more_customizable - **Primary Language**: Dart - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: https://pub.dev/packages/checkbox_list_tile_more_customizable - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-22 - **Last Updated**: 2024-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```dart CheckboxListTileMoreCustomizable( value: tmp, title: Text("CheckboxListTileMoreCustomizable!"), horizontalTitleGap: 16, contentPadding: EdgeInsets.symmetric(horizontal: 16), minLeadingWidth: 40, minVerticalPadding: 10, onChanged: (v) { setState(() { tmp = v; }); }, ); ``` ## Example [Example](https://pub.dev/packages/checkbox_list_tile_more_customizable#-example-tab-)