Untitled
Anonymous
dart
06/08/2023 3:07 PM
752 B
12
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...