We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe391e4 commit 83dfc41Copy full SHA for 83dfc41
lib/src/fields/form_builder_range_slider.dart
@@ -204,8 +204,13 @@ class FormBuilderRangeSlider extends FormBuilderFieldDecoration<RangeValues> {
204
);
205
}
206
207
+ // TODO: Solve focus issue when Flutter team solve this issue
208
+ // https://github.com/flutter/flutter/issues/53958
209
return Focus(
210
focusNode: state.effectiveFocusNode,
211
+ skipTraversal: true,
212
+ canRequestFocus: state.enabled,
213
+ debugLabel: 'FormBuilderRangeSlider-$name',
214
child: InputDecorator(
215
decoration: state.decoration,
216
isFocused: state.effectiveFocusNode.hasFocus,
0 commit comments