单击DropdownSearch时,如何将焦点放在搜索栏上?
我想找出是哪个领域造成的。我发现了下拉式生成器,但我不能弄清楚。
”
child: DropdownSearch<String>(
popupProps: const PopupProps.menu(
showSearchBox: true,
showSelectedItems: true,
searchDelay: Duration(milliseconds: 40)
),
dropdownDecoratorProps: DropDownDecoratorProps(
dropdownSearchDecoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10),
),
isDense: true,
)
),
onChanged: (String? value) {
setState(() {
_signs!.signs[index].type = RoadSignType.fromDisplay(value!);
});
},
items: _signTypeItems,
),`
1条答案
按热度按时间w41d8nur1#
使用FocusNade
和上面或下面showSearchBox = true使用代码粘贴