选择下拉按钮时 TextField 焦点卡住
TextField focus stuck when dropdown button is selected
我有一个文本字段和一个下拉菜单,它们都由 Bloc 控制。我遇到的问题是,一旦文本字段得到 selected,如果用户随后尝试从下拉菜单中 select 某些内容,它就不会放弃焦点。菜单出现,然后立即消失,焦点仍然在文本字段上。
这是一个演示问题的基本应用程序:
import 'dart:async';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Textfield Focus Example',
home: HomePage(),
);
}
}
class HomePage extends StatelessWidget {
FormBloc formBloc = FormBloc();
final List<DropdownMenuItem> userMenuItems = ['Bob', 'Frank']
.map((String name) => DropdownMenuItem(
value: name,
child: Text(name),
))
.toList();
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
// user - drop down menu
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('To: '),
StreamBuilder<String>(
stream: formBloc.selectedUser,
builder: (context, snapshot) {
return DropdownButton(
items: userMenuItems,
value: snapshot.data,
onChanged: formBloc.selectUser);
}),
],
),
// amount - text field
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Amount: '),
Container(
width: 100.0,
child: StreamBuilder<double>(
stream: formBloc.billAmount,
builder: (context, snapshot) {
return TextField(
keyboardType: TextInputType.number,
onChanged: formBloc.newBillAmount,
);
})),
],
),
],
),
),
);
}
}
class FormBloc {
StreamController<String> _selectedUserController = StreamController<String>();
Stream<String> get selectedUser =>
_selectedUserController.stream;
Function get selectUser => _selectedUserController.sink.add;
//Amount
StreamController<double> _billAmountController = StreamController<double>();
Stream<double> get billAmount =>
_billAmountController.stream;
void newBillAmount(String amt) =>
_billAmountController.sink.add(double.parse(amt));
void dispose() {
_selectedUserController.close();
_billAmountController.close();
}
}
我是否需要手动为 textField 声明 FocusNode 并告诉它何时放弃焦点?还是有其他原因导致文本字段占据了所有注意力?
这个问题已经解决并合并到flutter master频道
https://github.com/flutter/flutter/pull/42482
这解决了我们目前无法在
同一页面,因为当下拉菜单获得焦点时键盘消失导致指标发生变化,并且下拉菜单在激活时立即消失。
将这行代码添加到您的 TextField:focusNode: FocusNode(canRequestFocus: false)
。
这应该可以防止您的 TextField
在单击下拉菜单后请求获得焦点。
代码:
// amount - text field
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Amount: '),
Container(
width: 100.0,
child: StreamBuilder<double>(
stream: formBloc.billAmount,
builder: (context, snapshot) {
return TextField(
focusNode: FocusNode(canRequestFocus: false)
keyboardType: TextInputType.number,
onChanged: formBloc.newBillAmount,
);
})),
],
)
抱歉回答晚了,您需要在 DropDownButton 的 onTapListener 中添加以下代码 Widget.It 当您在下拉菜单中 select 或在 screen.Thanks 外部单击时,将移除文本字段上的焦点
FocusScope.of(context).requestFocus(new FocusNode());
以上答案仅在您不想调用 requestFocus() 方法的情况下才是正确的。但在我的例子中,它是一个聊天应用程序,我希望文本字段在滑动消息时获得焦点。如果设置布尔参数 canRequestFocus,则为 false。那我就不行了
在聊天页面应用栏中,我使用的弹出菜单导致了同样的问题(无意中聚焦。)
所以,对我有用的是,在弹出菜单的 onSelected(String str) 方法的最顶部,我调用了这个语句:
messageFocusNode.nextFocus(); //messageFocusNode is the focusNode of the TextField.
虽然我不知道为什么以及如何,但这对我有用。我是 flutter 的新手,如果你知道原因请更新我的答案。
我有一个文本字段和一个下拉菜单,它们都由 Bloc 控制。我遇到的问题是,一旦文本字段得到 selected,如果用户随后尝试从下拉菜单中 select 某些内容,它就不会放弃焦点。菜单出现,然后立即消失,焦点仍然在文本字段上。
这是一个演示问题的基本应用程序:
import 'dart:async';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Textfield Focus Example',
home: HomePage(),
);
}
}
class HomePage extends StatelessWidget {
FormBloc formBloc = FormBloc();
final List<DropdownMenuItem> userMenuItems = ['Bob', 'Frank']
.map((String name) => DropdownMenuItem(
value: name,
child: Text(name),
))
.toList();
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
// user - drop down menu
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('To: '),
StreamBuilder<String>(
stream: formBloc.selectedUser,
builder: (context, snapshot) {
return DropdownButton(
items: userMenuItems,
value: snapshot.data,
onChanged: formBloc.selectUser);
}),
],
),
// amount - text field
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Amount: '),
Container(
width: 100.0,
child: StreamBuilder<double>(
stream: formBloc.billAmount,
builder: (context, snapshot) {
return TextField(
keyboardType: TextInputType.number,
onChanged: formBloc.newBillAmount,
);
})),
],
),
],
),
),
);
}
}
class FormBloc {
StreamController<String> _selectedUserController = StreamController<String>();
Stream<String> get selectedUser =>
_selectedUserController.stream;
Function get selectUser => _selectedUserController.sink.add;
//Amount
StreamController<double> _billAmountController = StreamController<double>();
Stream<double> get billAmount =>
_billAmountController.stream;
void newBillAmount(String amt) =>
_billAmountController.sink.add(double.parse(amt));
void dispose() {
_selectedUserController.close();
_billAmountController.close();
}
}
我是否需要手动为 textField 声明 FocusNode 并告诉它何时放弃焦点?还是有其他原因导致文本字段占据了所有注意力?
这个问题已经解决并合并到flutter master频道
https://github.com/flutter/flutter/pull/42482
这解决了我们目前无法在 同一页面,因为当下拉菜单获得焦点时键盘消失导致指标发生变化,并且下拉菜单在激活时立即消失。
将这行代码添加到您的 TextField:focusNode: FocusNode(canRequestFocus: false)
。
这应该可以防止您的 TextField
在单击下拉菜单后请求获得焦点。
代码:
// amount - text field
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Amount: '),
Container(
width: 100.0,
child: StreamBuilder<double>(
stream: formBloc.billAmount,
builder: (context, snapshot) {
return TextField(
focusNode: FocusNode(canRequestFocus: false)
keyboardType: TextInputType.number,
onChanged: formBloc.newBillAmount,
);
})),
],
)
抱歉回答晚了,您需要在 DropDownButton 的 onTapListener 中添加以下代码 Widget.It 当您在下拉菜单中 select 或在 screen.Thanks 外部单击时,将移除文本字段上的焦点
FocusScope.of(context).requestFocus(new FocusNode());
以上答案仅在您不想调用 requestFocus() 方法的情况下才是正确的。但在我的例子中,它是一个聊天应用程序,我希望文本字段在滑动消息时获得焦点。如果设置布尔参数 canRequestFocus,则为 false。那我就不行了
在聊天页面应用栏中,我使用的弹出菜单导致了同样的问题(无意中聚焦。)
所以,对我有用的是,在弹出菜单的 onSelected(String str) 方法的最顶部,我调用了这个语句:
messageFocusNode.nextFocus(); //messageFocusNode is the focusNode of the TextField.
虽然我不知道为什么以及如何,但这对我有用。我是 flutter 的新手,如果你知道原因请更新我的答案。