@@ -24,8 +24,8 @@ SingleChildScrollView(
24
24
FormBuilder(
25
25
context,
26
26
key: _fbKey,
27
- autovalidate: autoValidate ,
28
- readonly: readOnly ,
27
+ autovalidate: true ,
28
+ readonly: false ,
29
29
/*onChanged: (formValue) {
30
30
print(formValue);
31
31
},*/
@@ -293,21 +293,21 @@ SingleChildScrollView(
293
293
294
294
## TODO:
295
295
### Improvements
296
- [ ] Improve documentation by showing complete list of input types and their usage and options
297
- [ ] Assert no duplicates in ` FormBuilderInput ` s ` attribute ` names
298
- [ ] Allow options for Checkboxes and Radios to appear left or right
299
- [ ] Allow addition of custom input types
300
- [ ] Proper validation for URL - does not work without protocol - http(s)
296
+ - [ ] Improve documentation by showing complete list of input types and their usage and options
297
+ - [ ] Assert no duplicates in ` FormBuilderInput ` s ` attribute ` names
298
+ - [ ] Allow options for Checkboxes and Radios to appear left or right
299
+ - [ ] Allow addition of custom input types
300
+ - [ ] Proper validation for URL - does not work without protocol - http(s)
301
301
302
- ### FormBuilderInputs
303
- [ X] SignaturePad
304
- [ ] MapInput
305
- [ ] ImagePicker
306
- [ ] DocumentPicker
307
- [ ] RangeSlider - https://pub.dartlang.org/packages/flutter_range_slider
308
- [ ] ColorPicker - https://pub.dartlang.org/packages/flutter_colorpicker
309
- [ ] DateRangePicker - https://pub.dartlang.org/packages/date_range_picker
310
- [ ] CodeInput - https://pub.dartlang.org/packages/code_input#-readme-tab- (Not Important)
311
- [ ] MaskedText - https://pub.dartlang.org/packages/flutter_masked_text#-changelog-tab- (Not Important)
302
+ ### New FormBuilder inputs
303
+ - [X] SignaturePad
304
+ - [ ] MapInput
305
+ - [ ] ImagePicker
306
+ - [ ] DocumentPicker
307
+ - [ ] RangeSlider - https://pub.dartlang.org/packages/flutter_range_slider
308
+ - [ ] ColorPicker - https://pub.dartlang.org/packages/flutter_colorpicker
309
+ - [ ] DateRangePicker - https://pub.dartlang.org/packages/date_range_picker
310
+ - [ ] CodeInput - https://pub.dartlang.org/packages/code_input#-readme-tab- (Not Important)
311
+ - [ ] MaskedText - https://pub.dartlang.org/packages/flutter_masked_text#-changelog-tab- (Not Important)
312
312
313
313
0 commit comments