颤振下拉按钮文本溢出

时间:2019-01-20 11:21:10

标签: drop-down-menu flutter

我如何使文本扩展到其内容?我试过了

child: DropdownButtonHideUnderline(
                                  child: DropdownButton<String>(
                                items: _currentCitySelected.area
                                    .map((String dropDownStringItem) {
                                  return DropdownMenuItem<String>(
                                    value: dropDownStringItem,
                                    child: Container(
                                        child: Text(
                                      dropDownStringItem,
                                      maxLines: 2,
//                                      overflow: TextOverflow.clip,
                                    )),
                                  );
                                }).toList(),
                                onChanged: (String newValueSelected) {
                                  setState(() {
                                    this._currentAreaSelected =
                                        newValueSelected;
                                  });
                                },
                                value: _currentAreaSelected,
                              ))

[enter image description here 文本将扩展为下拉对话框内容中的内容,但在主视图中它的工作方式不同。 enter image description here

1 个答案:

答案 0 :(得分:1)

isExpanded的{​​{1}}属性设置为DropdownButton

true

喜欢:

isExpanded: true