flutter-form-builder-ecosystem / form_builder_image_picker

Images picker field for FlutterFormBuilder. Get images from gallery or camera
https://pub.dev/packages/form_builder_image_picker
BSD 3-Clause "New" or "Revised" License
33 stars 62 forks source link

How to turn off auto scroll? #38

Closed gentlemadao closed 2 years ago

gentlemadao commented 2 years ago

When I operate a FormBuilderImagePicker in SingleChildScrollView, the picker will scroll to the top, how do I turn off this function?

gentlemadao commented 2 years ago

I found this code. state.requestFocus(); void requestFocus() { FocusScope.of(context).requestFocus(effectiveFocusNode); Scrollable.ensureVisible(context); } This will make scroll automatically when you delete the image in the ScorllView. Hopefully a parameter can be added to control this.