Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ziqq/flutter_check_box_rounded
Package created to give a fully functional and customizable rounded checkbox
https://github.com/ziqq/flutter_check_box_rounded
android flutter ios package
Last synced: 17 days ago
JSON representation
Package created to give a fully functional and customizable rounded checkbox
- Host: GitHub
- URL: https://github.com/ziqq/flutter_check_box_rounded
- Owner: ziqq
- License: mit
- Created: 2022-11-23T08:35:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-11T09:29:58.000Z (about 1 year ago)
- Last Synced: 2024-04-14T12:50:43.664Z (9 months ago)
- Topics: android, flutter, ios, package
- Language: Dart
- Homepage:
- Size: 430 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![Pub Version](https://img.shields.io/pub/v/flutter_check_box_rounded?color=blueviolet)](https://pub.dev/packages/flutter_check_box_rounded)
[![popularity](https://img.shields.io/pub/popularity/flutter_check_box_rounded?logo=dart)](https://pub.dev/packages/flutter_check_box_rounded/score)
[![likes](https://img.shields.io/pub/likes/flutter_check_box_rounded?logo=dart)](https://pub.dev/packages/flutter_check_box_rounded/score)
[![codecov](https://codecov.io/gh/ziqq/flutter_check_box_rounded/graph/badge.svg?token=9NB42HWAF2)](https://codecov.io/gh/ziqq/flutter_check_box_rounded)
[![style: flutter lints](https://img.shields.io/badge/style-flutter__lints-blue)](https://pub.dev/packages/flutter_lints)# flutter_check_box_rounded
## Description
Package created to give a fully functional and customizable rounded checkbox.
## Installation
Add CheckBoxRounded to your pubspec:
```yaml
dependencies:
flutter_check_box_rounded: any # or the latest version on Pub
```## Example
The most simple use is this one. A prepared round checkbox that has a callback when selected/unselected.
```dart
CheckBoxRounded(
onTap: (bool? value) {},
),
```That will generate this:
## Customize to your needs
You can customize all sort of behaviors and look you want. You can do things like setting selected/unselected color, selected/unselected
widgets, duration of the animation, etc.The next example show some of the customizations.
## Coverage