gpt4 book ai didi

flutter - 如何使下拉菜单 flutter

转载 作者:行者123 更新时间:2023-12-03 04:44:25 30 4
gpt4 key购买 nike

我怎样才能像在flutter中这样的下拉菜单?
以及如何将任何项目添加到该菜单中?
enter image description here

最佳答案

有一个称为WidgetDropDownButton。有关更多信息,请查看该小部件的docs。您可以通过向其List<DropdownMenuItem<T>>参数传递items来向菜单添加项目。

DropdownButton<String>(
value: dropdownValue,
icon: Icon(Icons.arrow_downward),
iconSize: 24,
elevation: 16,
style: TextStyle(color: Colors.deepPurple),
underline: Container(
height: 2,
color: Colors.deepPurpleAccent,
),
onChanged: (String newValue) {
setState(() {
dropdownValue = newValue;
});
},
items: <String>['One', 'Two', 'Free', 'Four']
.map<DropdownMenuItem<String>>((String value) {
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
);

关于flutter - 如何使下拉菜单 flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62544227/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com