A modified version of the existing checkbox to use a circle instead of a rounded rectangle!
CircularCheckBox(
value: someBooleanValue,
materialTapTargetSize: MaterialTapTargetSize.padded,
onChanged: (bool x) {
someBooleanValue = !someBooleanValue;
}
),
- Fix/Update the documentation
- ??