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
decoration: InputDecoration(labelText: 'Rate this form'),
289
-
name: 'rate',
290
-
iconSize: 32.0,
291
-
initialValue: 1.0,
292
-
max: 5.0,
293
-
onChanged: _onChanged,
294
-
),
295
176
],
296
177
),
297
178
),
@@ -356,25 +237,18 @@ Just add the `FormBuilderLocalizations.delegate` in the list of your app's `
356
237
## Input widgets
357
238
The currently supported fields include:
358
239
*`FormBuilderCheckbox` - Single Checkbox field
359
-
*`FormBuilderCheckboxList` - List of Checkboxes for multiple selection
360
-
*`FormBuilderChipsInput` - Takes a list of `Chip`s as input and suggests more options on typing
240
+
*`FormBuilderCheckboxGroup` - List of Checkboxes for multiple selection
361
241
*`FormBuilderChoiceChip` - Creates a chip that acts like a radio button.
362
-
*`FormBuilderColorPicker` - For `Color` input selection
363
242
*`FormBuilderDateRangePicker` - For selection of a range of dates
364
243
*`FormBuilderDateTimePicker` - For `Date`, `Time` and `DateTime` input
365
244
*`FormBuilderDropdown` - Used to select one value from a list as a Dropdown
366
245
*`FormBuilderFilterChip` - Creates a chip that acts like a checkbox.
367
-
*`FormBuilderRadioGroup` - Used to select one value from a list of Radio Widgets
246
+
*`FormBuilderRadioGroup` - Used to select one value from a list of Radio Widgets
368
247
*`FormBuilderRangeSlider` - Used to select a range from a range of values
369
-
*`FormBuilderRating` - For selection of a numerical value as a rating
370
-
*`FormBuilderSearchableDropdown` - Field for selecting value(s) from a searchable list
371
248
*`FormBuilderSegmentedControl` - For selection of a value from the `CupertinoSegmentedControl` as an input
372
-
*`FormBuilderSignaturePad` - Field with drawing pad on which user can doodle
373
249
*`FormBuilderSlider` - For selection of a numerical value on a slider
374
250
*`FormBuilderSwitch` - On/Off switch field
375
251
*`FormBuilderTextField` - A Material Design text field input.
376
-
*`FormBuilderTouchSpin` - Selection of a number by tapping on a plus or minus icon
377
-
*`FormBuilderTypeAhead` - Auto-completes user input from a list of items
378
252
379
253
In order to create an input field in the form, along with the label, and any applicable validation, there are several attributes that are supported by all types of inputs namely:
0 commit comments