File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,9 @@ class FormBuilderTextField extends FormBuilderField<String> {
160
160
/// {@macro flutter.widgets.editableText.cursorWidth}
161
161
final double cursorWidth;
162
162
163
+ /// {@macro flutter.widgets.editableText.cursorHeight}
164
+ final double ? cursorHeight;
165
+
163
166
/// {@macro flutter.widgets.editableText.cursorRadius}
164
167
final Radius ? cursorRadius;
165
168
@@ -307,6 +310,7 @@ class FormBuilderTextField extends FormBuilderField<String> {
307
310
this .autofocus = false ,
308
311
this .autocorrect = true ,
309
312
this .cursorWidth = 2.0 ,
313
+ this .cursorHeight,
310
314
this .keyboardType,
311
315
this .style,
312
316
this .controller,
@@ -399,6 +403,7 @@ class FormBuilderTextField extends FormBuilderField<String> {
399
403
inputFormatters: inputFormatters,
400
404
enabled: state.enabled,
401
405
cursorWidth: cursorWidth,
406
+ cursorHeight: cursorHeight,
402
407
cursorRadius: cursorRadius,
403
408
cursorColor: cursorColor,
404
409
scrollPadding: scrollPadding,
You can’t perform that action at this time.
0 commit comments