我尝试使用Flutter构建一个表单,我有自己的StatefulWidget返回一个带有2个输入的Form(我也尝试使用TextField)和DropdownButton。
当我执行第二个输入时显示此错误:'缺少焦点范围。'
代码:
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
},
)
]
)
)
);
}
}
答案 0 :(得分:0)
最后,问题在下次更新时得到修复。现在,您可以毫无问题地使用此小部件。 https://docs.flutter.io/flutter/widgets/Form-class.html