我还需要在Flutter中添加全宽度的DropdownButton以及调整下拉箭头图标。但是,尽管有许多尝试过,但它并没有完全扩展其宽度。
这是我的代码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,
)
Run Code Online (Sandbox Code Playgroud)