Skip to content

Commit 0b4a444

Browse files
committed
Started working on documenting version 6 pre-release
1 parent 9b72c51 commit 0b4a444

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [6.0.0-nullsafety.0] - 24-Mar-2021
2+
* Started working on null-safety
3+
4+
**BREAKING CHANGES**:
5+
* Removed fields that depend on external dependencies incuding: `FormBuilderChipsInput`, `FormBuilderColorPicker`, `FormBuilderRating`, `FormBuilderSearchableDropdown`, `FormBuilderSignaturePad`, `FormBuilderTouchSpin`, `FormBuilderTypeAhead`
6+
17
## [4.2.0] - 29-Dec-2020
28
* Added support for Slovak (sk) - @AdamA
39

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -363,25 +363,18 @@ Just add the `FormBuilderLocalizations.delegate` in the list of your app's `
363363
## Input widgets
364364
The currently supported fields include:
365365
* `FormBuilderCheckbox` - Single Checkbox field
366-
* `FormBuilderCheckboxList` - List of Checkboxes for multiple selection
367-
* `FormBuilderChipsInput` - Takes a list of `Chip`s as input and suggests more options on typing
366+
* `FormBuilderCheckboxGroup` - List of Checkboxes for multiple selection
368367
* `FormBuilderChoiceChip` - Creates a chip that acts like a radio button.
369-
* `FormBuilderColorPicker` - For `Color` input selection
370368
* `FormBuilderDateRangePicker` - For selection of a range of dates
371369
* `FormBuilderDateTimePicker` - For `Date`, `Time` and `DateTime` input
372370
* `FormBuilderDropdown` - Used to select one value from a list as a Dropdown
373371
* `FormBuilderFilterChip` - Creates a chip that acts like a checkbox.
374-
* `FormBuilderRadioGroup` - Used to select one value from a list of Radio Widgets
372+
* `FormBuilderRadioGroup` - Used to select one value from a list of Radio Widgets
375373
* `FormBuilderRangeSlider` - Used to select a range from a range of values
376-
* `FormBuilderRating` - For selection of a numerical value as a rating
377-
* `FormBuilderSearchableDropdown` - Field for selecting value(s) from a searchable list
378374
* `FormBuilderSegmentedControl` - For selection of a value from the `CupertinoSegmentedControl` as an input
379-
* `FormBuilderSignaturePad` - Field with drawing pad on which user can doodle
380375
* `FormBuilderSlider` - For selection of a numerical value on a slider
381376
* `FormBuilderSwitch` - On/Off switch field
382377
* `FormBuilderTextField` - A Material Design text field input.
383-
* `FormBuilderTouchSpin` - Selection of a number by tapping on a plus or minus icon
384-
* `FormBuilderTypeAhead` - Auto-completes user input from a list of items
385378

386379
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:
387380

example/lib/home_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ class HomePage extends StatelessWidget {
4444
child: SignupForm(),
4545
sourceFilePath: 'lib/sources/signup_form.dart',
4646
);
47-
return SignupForm();
4847
},
4948
),
5049
);

local.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Fri Mar 05 19:14:33 EAT 2021
8+
sdk.dir=/Users/danvick/Library/Android/sdk

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_form_builder
22
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.
3-
version: 5.0.0
4-
homepage: https://github.com/sportner/flutter_form_builder
3+
version: 6.0.0-nullsafety.0
4+
homepage: https://github.com/danvick/flutter_form_builder
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)