uk_custom_widget 1.0.1
uk_custom_widget: ^1.0.1 copied to clipboard
A new Flutter Custom packages project.
My Custom Widget #
A Flutter package that provides a customizable checkbox widget.
Features #
- Simple custom checkbox
- Customizable color, size, and border radius
Usage #
import 'package:uk_custom_widget/uk_custom_checkbox.dart';
CustomCheckbox(
value: isChecked,
onChanged: (val) {
setState(() {
isChecked = val;
});
},
)