flutter_form_builder
flutter_form_builder copied to clipboard
Simple form maker for Flutter Framework
If I turn on "don't keep activities" on Android Dev Options, the data input by user in my form gets deleted when you switch out of the app and come...
I have added local validations and using validate(), and save() methods after the API call I'm getting server validation errors and I need to show them in the form.
Hi, thanks for sharing source codes! But FormBuilderDropdown has a serious issue, every time when i am trying to update UI with new items, i have a following issue: ```...
Closes #955. Adds an additional field `shouldScrollToInvalidField` which defaults to `false`. On master, this is essentially this PR with `shouldScrollToInvalidField` set to `true`. However, due to issues such as #955,...
Can you please add i**sChoiceRequired bool** (or sth like that) to **FormBuilderChoiceChips** widget? It is helpful if developer has to make choice chips like switcher between multiple choices. If isChoiceRequired...
In FormBuilderRadioGroup, there is a '_separator_' arguement. However this separator is always on the same line as the item, even if the orientation is '_orientation: OptionsOrientation.vertical_'. In the source code...
**menuMaxHeight** has been added in DropDownButton Widget since Flutter 2.2.0 and above. **menuMaxHeight** allows you to specify the height of the menu window. ↓ https://api.flutter.dev/flutter/material/DropdownButton/menuMaxHeight.html https://github.com/flutter/flutter/pull/76493 FormBuilderDropdown also wants to...
There is no element selected when opening a dropdown. How can I focus the first element of the list when opening the dropdown instead of nothing focus? Why is it...
currently `FormBuilder.initialValue(formSchema)` formSchema is `Map` any plans for making **"form schema"** type safe? ``` /// An optional Map of field initialValues. Keys correspond to the field's /// name and value...