Merge branch 'master' into OnChanged_missing

This commit is contained in:
reidha 2021-11-28 21:14:38 +08:00 committed by GitHub
commit 0b912cfa80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ class CheckboxIconFormField extends FormField<bool> {
FormFieldSetter<bool>? onSaved,
bool initialValue = false,
ValueChanged<bool>? onChanged,
AutovalidateMode autovalidateMode,
AutovalidateMode? autovalidateMode,
bool enabled = true,
IconData trueIcon = Icons.check,
IconData falseIcon = Icons.check_box_outline_blank,

View file

@ -10,7 +10,7 @@ class CheckboxListTileFormField extends FormField<bool> {
FormFieldValidator<bool>? validator,
bool initialValue = false,
ValueChanged<bool>? onChanged,
AutovalidateMode autovalidateMode,
AutovalidateMode? autovalidateMode,
bool enabled = true,
bool dense = false,
Color? errorColor,