Skip to content

Commit 3253722

Browse files
committed
Disabled TextFormField.strutStyle breaks in v1.2.1 - current stable
1 parent edf0ab3 commit 3253722

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [3.0.0-beta.2] - 04-April-2019
2+
* Disabled `TextFormField.strutStyle` from `FormBuilderTextField` breaks in v1.2.1 - current stable at release
3+
14
## [3.0.0-beta.1] - 04-April-2019
25
* Complete rewrite of the package - stateful
36
* Contains `FormBuilderField` for creation of custom `FormField`s

lib/src/inputs/form_builder_text_field.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class _FormBuilderTextFieldState extends State<FormBuilderTextField> {
124124
maxLengthEnforced: widget.maxLengthEnforced,
125125
onFieldSubmitted: widget.onFieldSubmitted,
126126
scrollPadding: widget.scrollPadding,
127-
strutStyle: widget.strutStyle,
127+
// strutStyle: widget.strutStyle,
128128
textAlign: widget.textAlign,
129129
textCapitalization: widget.textCapitalization,
130130
textDirection: widget.textDirection,

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 components such as TextField (With number, url, email validation), DropDown, TypeAhead, Radios, Checkboxes
3-
version: 3.0.0-beta.1
3+
version: 3.0.0-beta.2
44
author: Danvick Miller <[email protected]>
55
homepage: https://github.com/danvick/flutter_form_builder
66

0 commit comments

Comments
 (0)