问题描述
我在更改SearchDropdown对象中的状态时遇到问题。如果已经选择一项,则该值不会更改。如果删除它,则可以更改状态。我不知道问题出在哪里。
@override
void initState() {
_dropdownPlatformReach =
buildDropdownMenuItemsPlatformReach(_platformReach);
_selectedplatformReach = _dropdownPlatformReach[0].value;
super.initState();
}
Expanded(
child: SearchableDropdown.single(
isExpanded: true,value: _selectedplatformReach,hint: " ",items: _dropdownPlatformReach,onChanged: (PlatformReach selectedplatformReach) {
setState(() {
_selectedplatformReach = selectedplatformReach;
});
},),flex: 2,
class PlatformReach {
String name;
String hint;
PlatformReach(this.name,this.hint);
static List<PlatformReach> getPlatformReach() {
return <PlatformReach>[
PlatformReach('Jud galati','(RO,[galati] County)'),PlatformReach('Jud Braila',[Braila] County)'),PlatformReach('Jud Prahova',[Ploiesti] County)'),PlatformReach('Jud Maramures',[Baia Mare] County)'),];
}
}
解决方法
我解决了这个问题。
似乎因为我在同一页面上还有另一个下拉菜单,所以setState对于另一个页面并没有更改。
我通过将每个下拉小部件移动到单独的文件中来解决此问题。
,请发送完整文件或部分功能
您的
void initState(){
_dropdownPlatformReach =
buildDropdownMenuItemsPlatformReach(_platformReach);
_selectedPlatformReach = _dropdownPlatformReach[0].value;
super.initState();
}
需要在小部件之前声明以允许设置状态修改值