Untitled
unknown
dart
2 years ago
562 B
6
Indexable
Obx(() => Checkbox(
side:
const BorderSide(color: AppColors.primary, width: 2),
activeColor: AppColors.primary,
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(AppStyles.borderRadius)),
value: controller.isChecked.value,
onChanged: (bool? newValue) {
controller.isChecked.value = newValue!;
})),Editor is loading...