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 @@ -35,6 +35,7 @@ class FormBuilderDateRangePicker
35
35
final EdgeInsets scrollPadding;
36
36
final bool enableInteractiveSelection;
37
37
final InputCounterWidgetBuilder ? buildCounter;
38
+ final MouseCursor ? mouseCursor;
38
39
final bool expands;
39
40
final int ? minLines;
40
41
final bool showCursor;
@@ -106,6 +107,7 @@ class FormBuilderDateRangePicker
106
107
this .cursorColor,
107
108
this .keyboardAppearance,
108
109
this .buildCounter,
110
+ this .mouseCursor,
109
111
this .expands = false ,
110
112
this .minLines,
111
113
this .showCursor = false ,
@@ -146,6 +148,7 @@ class FormBuilderDateRangePicker
146
148
autocorrect: autocorrect,
147
149
autofocus: autofocus,
148
150
buildCounter: buildCounter,
151
+ mouseCursor: mouseCursor,
149
152
cursorColor: cursorColor,
150
153
cursorRadius: cursorRadius,
151
154
cursorWidth: cursorWidth,
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ class FormBuilderDateTimePicker extends FormBuilderFieldDecoration<DateTime> {
99
99
final VoidCallback ? onEditingComplete;
100
100
101
101
final InputCounterWidgetBuilder ? buildCounter;
102
+ final MouseCursor ? mouseCursor;
102
103
103
104
final Radius ? cursorRadius;
104
105
final Color ? cursorColor;
@@ -178,6 +179,7 @@ class FormBuilderDateTimePicker extends FormBuilderFieldDecoration<DateTime> {
178
179
this .textInputAction,
179
180
this .onEditingComplete,
180
181
this .buildCounter,
182
+ this .mouseCursor,
181
183
this .cursorRadius,
182
184
this .cursorColor,
183
185
this .keyboardAppearance,
@@ -219,6 +221,7 @@ class FormBuilderDateTimePicker extends FormBuilderFieldDecoration<DateTime> {
219
221
style: style,
220
222
onEditingComplete: onEditingComplete,
221
223
buildCounter: buildCounter,
224
+ mouseCursor: mouseCursor,
222
225
cursorColor: cursorColor,
223
226
cursorRadius: cursorRadius,
224
227
cursorWidth: cursorWidth,
You can’t perform that action at this time.
0 commit comments