Skip to content

Commit b2d2658

Browse files
authored
Fixed Decoration error
Line 98's decoration had a call () on it preventing the code from working, I removed the parenthesis and now it works.
1 parent 6b78d17 commit b2d2658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/form_builder_image_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class FormBuilderImagePicker extends FormBuilderField<List<dynamic>> {
9595
final primaryColor = theme.primaryColor;
9696

9797
return InputDecorator(
98-
decoration: state.decoration(),
98+
decoration: state.decoration,
9999
child: Container(
100100
height: previewHeight,
101101
child: ListView(

0 commit comments

Comments
 (0)