Flutter Check Box Rounded

style: effective dart

Description

Package created to give a fully functional and customizable rounded CheckBox.

Installation

Add App Version Checker to your pubspec:

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.

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

GitHub

View Github