File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ class FormBuilderDateRangePicker extends FormBuilderField<DateTimeRange> {
19
19
final StrutStyle ? strutStyle;
20
20
final TextDirection ? textDirection;
21
21
final TextAlign textAlign;
22
+ final TextAlignVertical ? textAlignVertical;
22
23
final bool autofocus;
23
24
final bool autocorrect;
24
25
final MaxLengthEnforcement ? maxLengthEnforcement;
@@ -86,6 +87,7 @@ class FormBuilderDateRangePicker extends FormBuilderField<DateTimeRange> {
86
87
this .enableInteractiveSelection = true ,
87
88
this .maxLengthEnforcement,
88
89
this .textAlign = TextAlign .start,
90
+ this .textAlignVertical,
89
91
this .autofocus = false ,
90
92
this .autocorrect = true ,
91
93
this .cursorWidth = 2.0 ,
@@ -169,6 +171,7 @@ class FormBuilderDateRangePicker extends FormBuilderField<DateTimeRange> {
169
171
textCapitalization: textCapitalization,
170
172
textDirection: textDirection,
171
173
textInputAction: textInputAction,
174
+ textAlignVertical: textAlignVertical,
172
175
strutStyle: strutStyle,
173
176
readOnly: true ,
174
177
expands: expands,
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ class FormBuilderDateTimePicker extends FormBuilderField<DateTime> {
71
71
final TextInputType keyboardType;
72
72
final TextStyle ? style;
73
73
final TextAlign textAlign;
74
+ final TextAlignVertical ? textAlignVertical;
74
75
75
76
/// Preset the widget's value.
76
77
final bool autofocus;
@@ -166,6 +167,7 @@ class FormBuilderDateTimePicker extends FormBuilderField<DateTime> {
166
167
this .locale,
167
168
this .maxLength,
168
169
this .textDirection,
170
+ this .textAlignVertical,
169
171
this .onFieldSubmitted,
170
172
this .controller,
171
173
this .style,
@@ -210,6 +212,7 @@ class FormBuilderDateTimePicker extends FormBuilderField<DateTime> {
210
212
return TextField (
211
213
textDirection: textDirection,
212
214
textAlign: textAlign,
215
+ textAlignVertical: textAlignVertical,
213
216
maxLength: maxLength,
214
217
autofocus: autofocus,
215
218
decoration: state.decoration,
You can’t perform that action at this time.
0 commit comments