我需要添加下拉按钮与全宽调整下拉箭头图标在扑动以及。但是很多人尝试了很多方法,但是它没有完全展开它的宽度。
这是我的 DropdownButton
代码:
new Expanded(
child: new Column(
children: <Widget>[
new DropdownButton(
items: [
new DropdownMenuItem(child: new Text("Abc")),
new DropdownMenuItem(child: new Text("Xyz")),
],
hint: new Text("Select City"),
onChanged: null
)
]
),
flex: 1,
)