'Missing Focus scope.' 使用输入文本
'Missing Focus scope.' Using input text
我尝试使用 Flutter 构建一个表单,我有自己的 StatefulWidget return 一个带有 2 个输入的表单(我也尝试使用 TextField)和一个 DropdownButton。
当我执行第二个输入时显示此错误:'Missing Focus scope.'
代码:
import 'package:flutter/material.dart';
class ContactFormView extends StatefulWidget {
@override
CreateFormViewState createState() => new CreateFormViewState();
}
class CreateFormViewState extends State<ContactFormView> {
GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new Form(
key: _formKey,
child: new Column(
children: <Widget>[
new Input(
labelText: 'First Name',
onChanged: (InputValue value) {
// Logic here
}
),
new Input(
labelText: 'Last Name',
onChanged: (InputValue value) {
// Logic here
}
),
new RaisedButton(
child: new Text('SUBMIT'),
onPressed: () {
// Logic here
},
)
]
)
)
);
}
}
终于,问题在下一次更新中得到了解决。现在,您可以毫无问题地使用此小部件。 https://docs.flutter.io/flutter/widgets/Form-class.html
我尝试使用 Flutter 构建一个表单,我有自己的 StatefulWidget return 一个带有 2 个输入的表单(我也尝试使用 TextField)和一个 DropdownButton。
当我执行第二个输入时显示此错误:'Missing Focus scope.'
代码:
import 'package:flutter/material.dart';
class ContactFormView extends StatefulWidget {
@override
CreateFormViewState createState() => new CreateFormViewState();
}
class CreateFormViewState extends State<ContactFormView> {
GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new Form(
key: _formKey,
child: new Column(
children: <Widget>[
new Input(
labelText: 'First Name',
onChanged: (InputValue value) {
// Logic here
}
),
new Input(
labelText: 'Last Name',
onChanged: (InputValue value) {
// Logic here
}
),
new RaisedButton(
child: new Text('SUBMIT'),
onPressed: () {
// Logic here
},
)
]
)
)
);
}
}
终于,问题在下一次更新中得到了解决。现在,您可以毫无问题地使用此小部件。 https://docs.flutter.io/flutter/widgets/Form-class.html