将DropdownButton在颤振基础上设置最大的宽度DropdownMenuItem从它的项目。如果选择了一个小项目,这会在项目和箭头之间留下大量空白。如何使按钮缩放以适合所选项目的宽度?
我尝试使用Expanded, 一些Flexible东西,但我仍然无法改变它的宽度。
DropdownButton(
value: null,
hint: Text("Small text"),
items: ..., //Text widgets that have more text and are larger than the hint
)
Run Code Online (Sandbox Code Playgroud)