gpt4 book ai didi

选择选项时,Flutter DropdownButton 显示标签

转载 作者:行者123 更新时间:2023-12-02 21:29:21 28 4
gpt4 key购买 nike

可以使用下拉按钮:

 return DropdownButton<String>(
items: <String>['Foo', 'Bar'].map((String value) {
return new DropdownMenuItem<String>(
value: value,
child: new Text(value),
);
}).toList(),
onChanged: (_) {},
);

TextFormField 中有类似于装饰用户的内容:

      TextFormField(
controller: _titleController,
decoration: InputDecoration(labelText: 'Input'),
validator: (String value) {
if (value != null && value.isEmpty) {
return 'Please enter some text';
}
},
style: Theme.of(context).textTheme.title,
),

当在上面的 TextFormField 中写入内容时,会显示 Input 一词。像这样:

enter image description here

最佳答案

将 DropdownButton 替换为 DropdownButtonFormField:

https://api.flutter.dev/flutter/material/DropdownButtonFormField-class.html

关于选择选项时,Flutter DropdownButton 显示标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56410110/

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