Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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:

enter image description here

## 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.

enter image description here

## Coverage