bobppsureway

Results 4 comments of bobppsureway

Same issue. I have a Drawer with ListView, drag listview up and down GoogleMap interactive will fire. Tap ListTiles or any other buttons in Drawer GoogleMap Marker/oninfoWindow onTap or will...

I'm facing the same issue. My solution is wrapping this MultiSelect widget with a new Form and give a new _formkey such as _multiSelectFormkKey. Once you get a new datasource...

List dropDownData1 = [ { "display": "Australia", "value": 1, }, { "display": "Canada", "value": 2, }, ]; List dropDownData2 = [ { "display": "India", "value": 3, }, { "display": "United...

If the dropdown populates with initialValue then setState on initialValue=null. Use async call await Future.delayed( Duration(milliseconds: 20), () { _formKey.reset(); }); Then the selected items are reset.