Skip to content

Commit a3b473f

Browse files
fix: apply default focus travesal order policy
1 parent 83dfc41 commit a3b473f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/src/form_builder.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,7 @@ class FormBuilderState extends State<FormBuilder> {
369369
// `onChanged` is called during setInternalFieldValue else will be called early
370370
child: _FormBuilderScope(
371371
formState: this,
372-
child: FocusTraversalGroup(
373-
policy: WidgetOrderTraversalPolicy(),
374-
child: widget.child,
375-
),
372+
child: widget.child,
376373
),
377374
);
378375
}

0 commit comments

Comments
 (0)