我在用
DropDownMultiSelect
在那里,我得到了下拉值的RenderFlex溢出错误
child: DropDownMultiSelect(
onChanged: (c){
setState(() {
selectedColors = ["","","","",""];
initialColor = c;
for(int i=0; i<initialColor.length; i++){
selectedColors[i] = initialColor[i];
}
});
},
options: colorList,
selectedValues: initialColor,
whenEmpty: "Select Color",
),
这是我尝试过的
1条答案
按热度按时间chy5wohz1#
如果您使用
multiselect
软件包:将
pubspec.yaml
文件中的multiselect: ^0.0.7
更改为:然后运行
flutter pub get
并重建;