我需要偶尔禁用 TextFormField。我在小部件或控制器中找不到标志来简单地将其设为只读或禁用。最好的方法是什么?
15 回答
还有另一种方法可以实现,也不会导致此问题。希望这可能对某人有所帮助。
创建AlwaysDisabledFocusNode
并将其传递给focusNode
a 的属性TextField
。
class AlwaysDisabledFocusNode extends FocusNode {
@override
bool get hasFocus => false;
}
然后
new TextField(
enableInteractiveSelection: false, // will disable paste operation
focusNode: new AlwaysDisabledFocusNode(),
...
...
)
更新:
TextField
现在enabled
有财产。你可以在哪里禁用TextField
类似
new TextField(
enabled: false,
...
...
)
注意:这也将禁用与文本输入相关的图标。
TextFormField(
readOnly: true,
)
TextField
并且TextFormField
两者都有一个名为enabled
. 您可以使用布尔变量来控制它。enabled=true
意味着它将充当编辑文本字段,而enabled=false
将禁用TextField
.
类似于 html 中的 readonly
TextField(
enableInteractiveSelection: false,
focusNode: FocusNode(),
)
这可以响应 onTap。
类似于 html 中的禁用
TextField(
enable: false
)
这个不能响应onTap。
这不是框架当前提供的功能,但您可以使用 aFocusScope
来防止 aTextFormField
请求焦点。
这是它被禁用时的样子。
这是启用后的样子。
代码如下:
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
home: new HomePage(),
));
}
class HomePage extends StatefulWidget {
HomePageState createState() => new HomePageState();
}
class HomePageState extends State<HomePage> {
TextEditingController _controller = new TextEditingController();
bool _enabled = false;
@override
Widget build(BuildContext context) {
ThemeData theme = Theme.of(context);
return new Scaffold(
appBar: new AppBar(
title: new Text('Disabled Text'),
),
floatingActionButton: new FloatingActionButton(
child: new Icon(Icons.free_breakfast),
onPressed: () {
setState(() {
_enabled = !_enabled;
});
}
),
body: new Center(
child: new Container(
margin: const EdgeInsets.all(10.0),
child: _enabled ?
new TextFormField(controller: _controller) :
new FocusScope(
node: new FocusScopeNode(),
child: new TextFormField(
controller: _controller,
style: theme.textTheme.subhead.copyWith(
color: theme.disabledColor,
),
decoration: new InputDecoration(
hintText: _enabled ? 'Type something' : 'You cannot focus me',
),
),
),
),
),
);
}
}
这是以某种方式禁用TextField
但保留其功能的另一种方法。我的意思是onTap
使用
TextField(
enableInteractiveSelection: false,
onTap: () { FocusScope.of(context).requestFocus(new FocusNode()); },
)
enableInteractiveSelection
将禁用内容选择
TextField
FocusScope.of(context).requestFocus(new FocusNode());
将焦点更改为未使用的焦点节点
使用这种方式,您仍然可以触摸TextField
但不能输入或选择它的内容。相信我,它有时会很有用(日期选择器,时间选择器,...):)
使用readOnly:true
是正确的。但是,如果您仍想关注此文本字段,您可以按照以下代码进行操作:
TextFormField(
showCursor: true,//add this line
readOnly: true
)
如果要隐藏文本指针(光标),则需要设置enableInteractiveSelection
为false
.
我使用了readOnly和enableInteractiveSelection属性的组合来在 TextField 上实现所需的行为。
TextField(
readOnly: true,
enableInteractiveSelection: true,
onTap: () {
do_something(),
},
)
将enableInteractiveSelection设置为true,它将允许onTap()正常运行。
现在有一种方法可以禁用TextField
和TextFormField
。在这里查看 github 。像这样使用它:
TextField(enabled: false)
我尝试使用 FocuseNode(), enabled = false 但无法正常工作,而不是使用名为AbsorbPointer的小部件。它用于防止小部件触摸或点击,我将我的 TextFormField 或其他小部件包装在 AbsordPointer 小部件中并提供一个参数以禁用触摸
例子
AbsorbPointer(
absorbing: true, //To disable from touch use false while **true** for otherwise
child: Your WidgetsName
);
它有enabled
钥匙,这对我来说很好。
TextFormField(
enabled: false,
)
采用readOnly: true
TextField(
readOnly: true,
controller: controller,
obscureText: obscureText,
onChanged: (value) {
onValueChange();
},
style: TextStyle(
color: ColorResource.COLOR_292828,
fontFamily: Font.AvenirLTProMedium.value,
fontSize: ScreenUtil().setHeight(Size.FOURTEEN)),
decoration: InputDecoration(
border: InputBorder.none,
hintText: hint,
hintStyle: TextStyle(
fontSize: ScreenUtil().setHeight(Size.FOURTEEN),
color: ColorResource.COLOR_HINT,
fontFamily: Font.AvenirLTProBook.value)),
),
删除本机键盘,然后以编程方式聚焦 TextField(例如,单击表情符号按钮后):
FocusScope.of(context).requestFocus(titleFocusNode);
titleFocusNode.consumeKeyboardToken();
它对我有用
TextField(
readOnly: true,
onChanged: (value) { },
)
为此... TextField 有两个属性:
TextField(
readOnly: true,
enabled: false,
)
1- 如果您希望禁用 TextField 键入和编带集 [启用:false]
2- 如果您只想禁用TextField 输入集 [readOnly: true]