@@ -25,6 +25,7 @@ class FormBuilderTextField extends StatefulWidget {
25
25
final StrutStyle strutStyle;
26
26
final TextDirection textDirection;
27
27
final TextAlign textAlign;
28
+ final TextAlignVertical textAlignVertical;
28
29
final bool autofocus;
29
30
final bool autocorrect;
30
31
final bool maxLengthEnforced;
@@ -62,6 +63,7 @@ class FormBuilderTextField extends StatefulWidget {
62
63
this .enableInteractiveSelection = true ,
63
64
this .maxLengthEnforced = true ,
64
65
this .textAlign = TextAlign .start,
66
+ this .textAlignVertical,
65
67
this .autofocus = false ,
66
68
this .autocorrect = true ,
67
69
this .cursorWidth = 2.0 ,
@@ -174,6 +176,7 @@ class FormBuilderTextFieldState extends State<FormBuilderTextField> {
174
176
onFieldSubmitted: widget.onFieldSubmitted,
175
177
scrollPadding: widget.scrollPadding,
176
178
textAlign: widget.textAlign,
179
+ textAlignVertical: widget.textAlignVertical,
177
180
textCapitalization: widget.textCapitalization,
178
181
textDirection: widget.textDirection,
179
182
textInputAction: widget.textInputAction,
0 commit comments