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
<!-- Required: this reference (one or many) will be closed upon merge. Ideally it has the acceptance criteria and designs for features or fixes related to the work in this Pull Request -->
6
-
7
-
Connected to #???
3
+
<!-- If this pull request close some issue, use this reference to close it automatically -->
4
+
Close #???
8
5
9
6
<!-- Optional: other issues or pull requests related to this, but merging should not close it -->
7
+
Connected to #???
10
8
11
-
## Testing and Review Notes
12
-
13
-
<!-- Required: steps to take to confirm this works as expected or other guidance for code, UX, and any other reviewers -->
9
+
## Solution description
14
10
15
11
## Screenshots or Videos
16
12
17
13
<!-- Optional: to clearly demonstrate the feature or fix to help with testing and reviews -->
18
14
19
15
## To Do
20
16
21
-
<!-- Add “WIP” to the PR title if pushing up but not complete nor ready for review -->
22
-
-[ ] double check the original issue to confirm it is fully satisfied
23
-
-[ ] add testing notes and screenshots in PR description to help guide reviewers
24
-
-[ ] request the "UX" team perform a design review (if/when applicable)
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Thank you for considering and taking the time to contribute to this project!
4
4
5
5
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with collaborators of this repository before making a change.
6
6
7
-
Please note we have a [code of conduct](https://github.com/danvick/flutter_form_builder/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
7
+
Please note we have a [code of conduct](https://github.com/danvick/flutter_form_builder/blob/master/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
8
8
9
9
## How to Contribute
10
10
@@ -32,19 +32,36 @@ You don't need to code to help us. If you have a suggestion of a feature, see a
32
32
* Change into the example directory: `cd example`
33
33
* Run the App: `flutter run`
34
34
35
-
### Make a pull request
35
+
## Implement code
36
+
37
+
### Enhancement (new feature or request)
38
+
39
+
- Implement code
40
+
- Implement unit tests
41
+
- Add example
42
+
- Test example in all package compatible platforms
43
+
- Are a new component, validator or behaviour; add to readme package
44
+
45
+
### Bug
46
+
47
+
- Fix bug
48
+
- Update and/or add unit tests to verify fixed behaviour
49
+
- Verify if bug is fixed all package compatible platforms
50
+
51
+
## Make a pull request
36
52
37
53
We really appreciate contributions via GitHub pull requests. To contribute take the following steps:
38
54
39
55
* Make sure you are up to date with the latest code on the master:
* Push changes to your fork: `git push origin <name_of_your_branch>`
65
+
* Open a pull request and fill template
49
66
50
67
Please make sure you solved all warnings and errors reported by the static code analyses and that you fill in the full pull request template. Failing to do so will result in us asking you to fix it.
Copy file name to clipboardExpand all lines: packages/flutter_form_builder/CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -596,15 +596,15 @@
596
596
597
597
## [3.2.1] - 22-Jun-2019
598
598
* Add missing attributes for `FormBuilderSlider` to customize `Slider` Widget including `activeColor`, `inactiveColor`, `onChangeStart`, `onChangeEnd`, `label` and `semanticFormatterCallback`. Closes [#80](https://github.com/danvick/flutter_form_builder/issues/80).
599
-
* Add support for `underline` to `FormBuilderDropdown`. Credit [Jordan Nelson](https://github.com/jrnelson333).
599
+
* Add support for `underline` to `FormBuilderDropdown`. Credit Jordan Nelson (github/jrnelson333).
600
600
* Minor fixes to README
601
601
602
602
## [3.2.0] - 07-Jun-2019
603
603
* Bumped up `flutter_typeahead` from v1.5.0 to 1.6.1
604
604
* Bumped up `datetime_picker_formfield` from v0.1.8 to 0.2.0
605
605
606
606
## [3.1.3] - 06-Jun-2019
607
-
* Made `flutter_typeahead`'s `onSuggestionSelected` available to `FormBuilderTypeAhead` - Closes [#73](https://github.com/danvick/flutter_form_builder/issues/73). Credit to [daWeed](https://github.com/psrcek)
607
+
* Made `flutter_typeahead`'s `onSuggestionSelected` available to `FormBuilderTypeAhead` - Closes [#73](https://github.com/danvick/flutter_form_builder/issues/73). Credit to daWeed (github/psrcek)
608
608
609
609
## [3.1.2] - 27-May-2019
610
610
* Attempted fix for `FormBuilderTextField` retaining focus even after moving to other fields causing the UI to jump back to the TextField
@@ -625,7 +625,7 @@
625
625
* Complete rewrite of the package - stateful field widgets
626
626
*`FormBuilderCheckbox` - Single Checkbox field
627
627
*`FormBuilderCheckboxList` - List of Checkboxes for multiple selection
628
-
*`FormBuilderChipsInput` - Takes a list of Flutter [Chip](https://docs.flutter.io/flutter/material/Chip-class.html) as inputs
628
+
*`FormBuilderChipsInput` - Takes a list of Flutter [Chip](https://api.flutter.dev/flutter/material/Chip-class.html) as inputs
629
629
*`FormBuilderDateTimePicker` - For Date, Time and DateTime input
630
630
*`FormBuilderDropdown` - Allow selection of one value from a list as a Dropdown
631
631
*`FormBuilderRadio` - Allow selection of one value from a list of Radio Widgets
0 commit comments