我在下面的这段代码中有一个 dropDownMenu 按钮和一行内的文本我已经以这种方式将焦点与侦听器一起使用,但它不起作用有人可以帮助我找到解决它的方法吗?当用户点击文本时,我想激活下拉按钮。提前致谢。
FocusNode node1 = new FocusNode();
@override
void initState() {
node1!.addListener(() => node1!.hasFocus);
super.initState();
}
Row(
children: [
InkWell(
onTap: () {
FocusScope.of(context).requestFocus(node1);
},
child: Row(
children: [
SvgPicture.asset(
"assets/images/DropDownIcon.svg",
fit: BoxFit.scaleDown,
width: 14,
),
],
),
),
Container(
child: DropdownButtonHideUnderline(
child: DropdownButton<String>(
// focusNode: node1,
onChanged: (String? val) {},
iconEnabledColor: Colors.transparent,
iconSize: 0.0,
items: .......
).toList()),
),
),
],
),