Skip to content

Commit 4db857a

Browse files
committed
Fix: _FormBuilderFilePickerState.initState
1 parent 661e278 commit 4db857a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/fields/form_builder_file_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ class _FormBuilderFilePickerState
139139

140140
@override
141141
void initState() {
142-
_files = widget.initialValue ?? [];
143142
super.initState();
143+
_files = widget.initialValue ?? [];
144144
}
145145

146146
Future<void> pickFiles(FormFieldState<List<PlatformFile>> field) async {

0 commit comments

Comments
 (0)