Skip to content

Commit 1a8e3ef

Browse files
committed
Release v3.11.4
1 parent e9f3a50 commit 1a8e3ef

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [3.11.4] - 08-Jul-2020
2+
* Added text styles options to Slider
3+
* Re-implement number formatting on Slider field
4+
* Fix bug in ChoiceChip & FilterChip where using FieldOption label instead of child breaks. Closes #348
5+
* Added `labelPadding` and `labelStyle` to ChoiceChip field
6+
* Fix SignaturePad initialValue.
7+
18
## [3.11.3] - 21-Jun-2020
29
* Reverted changes to PhoneField causing focus issues
310

example/lib/main.dart

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class MyHomePageState extends State<MyHomePage> {
503503
),
504504
SizedBox(height: 15),
505505
FormBuilderSignaturePad(
506-
//initialValue: sampleSignature,
506+
initialValue: sampleSignature,
507507
decoration: const InputDecoration(labelText: 'Signature'),
508508
attribute: 'signature',
509509
// height: 250,
@@ -574,12 +574,8 @@ class MyHomePageState extends State<MyHomePage> {
574574
),
575575
onPressed: () {
576576
if (_fbKey.currentState.saveAndValidate()) {
577-
print(_fbKey
578-
.currentState.value['contact_person'].runtimeType);
579577
print(_fbKey.currentState.value);
580578
} else {
581-
print(_fbKey
582-
.currentState.value['contact_person'].runtimeType);
583579
print(_fbKey.currentState.value);
584580
print('validation failed');
585581
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_form_builder
22
description: Package to build Material Form with fields like TextField, DropDown, Switches etc. with ability to create custom FormFields and composability and reuse validation functions.
3-
version: 3.11.3
3+
version: 3.11.4
44
homepage: https://github.com/danvick/flutter_form_builder
55

66
environment:

0 commit comments

Comments
 (0)