Untitled
unknown
dart
6 months ago
562 B
1
Indexable
Never
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!; })),