You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -370,10 +370,7 @@ The currently supported fields include:
370
370
*`FormBuilderDateRangePicker` - For selection of a range of dates
371
371
*`FormBuilderDateTimePicker` - For `Date`, `Time` and `DateTime` input
372
372
*`FormBuilderDropdown` - Used to select one value from a list as a Dropdown
373
-
*`FormBuilderFilePicker` - Picks image(s) from user device storage.
374
373
*`FormBuilderFilterChip` - Creates a chip that acts like a checkbox.
375
-
*`FormBuilderImagePicker` - Picks image(s) from Gallery or Camera.
376
-
*`FormBuilderPhoneField` - International phone number input.
377
374
*`FormBuilderRadioGroup` - Used to select one value from a list of Radio Widgets
378
375
*`FormBuilderRangeSlider` - Used to select a range from a range of values
379
376
*`FormBuilderRating` - For selection of a numerical value as a rating
@@ -399,6 +396,13 @@ In order to create an input field in the form, along with the label, and any app
399
396
|`valueTransformer`|`ValueTransformer<T>`|`null`|`No`| Function that transforms field value before saving to form value. e.g. transform TextField value for numeric field from `String` to `num`|
400
397
The rest of the attributes will be determined by the type of Widget being used.
401
398
399
+
### Additional input fields
400
+
To make this package compartible with as many platforms as Flutter supports, we separated some input fields into their own packages because they depend on platform-specific plugins. Here's are the links to some of the packages that could be used with `FormBuilder`
401
+
*[FormBuilderFilePicker](https://pub.dev/packages/form_builder_file_picker) - Picks image(s) from user device storage.
402
+
*[FormBuilderImagePicker](https://pub.dev/packages/form_builder_image_picker) - Picks image(s) from Gallery or Camera.
Copy file name to clipboardExpand all lines: pubspec.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: flutter_form_builder
2
2
description: This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input.
0 commit comments