Closed
Description
I have a tree
FormBuilder child:(Column(children:[
FormBuilderSlider(...),
FormBuilderTextField(...)
What I want to do is update the values in the text field as the slider changes and I tried setting and initial value in the TextField and calling a setState () and setting as a property in the stateful class.
I had the FormBuildSlider onChanged call
void _setBidValue(val)
{
setState(() {
_bidValue = val;
});
}
Is there a proper way to set the values on the FormBuilder ?
With thanks,
Metadata
Metadata
Assignees
Labels
No labels