使用 FocusScopeNode 在 TextFormFields 之间轻松移动焦点
Posted Lucklyの博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 FocusScopeNode 在 TextFormFields 之间轻松移动焦点相关的知识,希望对你有一定的参考价值。
Form
和TextFormField
是在 Flutter 中输入文本时非常有用的小部件。
我们可以提供一种在键盘上按“下一步”时移动输入焦点的便捷方法吗?
使用FocusScopeNode
,这是非常容易做到的。
假设您有一个电子邮件和密码输入表单,如下所示:
import 'package:flutter/material.dart';
class EmailPasswordSignInForm extends StatefulWidget {
@override
_EmailPasswordSignInFormState createState() =>
_EmailPasswordSignInFormState();
}
class _EmailPasswordSignInFormState extends State<EmailPasswordSignInForm> {
final FocusScopeNode _node = FocusScopeNode();
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
@override
void dispose() {
_node.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("FocusScopeNode "),
),
body: Container(
child: Form(
key: _formKey,
child: FocusScope(
node: _node,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
// email
TextFormField(
decoration: InputDecoration(
labelText: 'Email',
hintText: 'https://luckly.work/',
),
textInputAction: TextInputAction.next,
keyboardType: TextInputType.emailAddress,
// move to the next field
onEditingComplete: _node.nextFocus,
),
// password
TextFormField(
decoration: InputDecoration(
labelText: 'Password',
),
obscureText: true,
textInputAction: TextInputAction.done,
// move to the next field
onEditingComplete: _node.nextFocus,
),
// submit
RaisedButton(
child: Text('Sign In'),
onPressed: () {/* submit code here */},
),
],
),
),
),
),
);
}
}
以上是关于使用 FocusScopeNode 在 TextFormFields 之间轻松移动焦点的主要内容,如果未能解决你的问题,请参考以下文章