FormField控件是單一表單字段,這個(gè)控件維護(hù)表單字段的當(dāng)前狀態(tài),以便更新和驗(yàn)證錯(cuò)誤能在UI中可見。TextField控件就是在FormField中包裝了一個(gè)Input控件(后面的文章講解),F(xiàn)ormField維護(hù)輸入的當(dāng)前值,使您不需要自己管理它,更容易一次保存,重置或驗(yàn)證多個(gè)字段。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比會(huì)澤網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式會(huì)澤網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋會(huì)澤地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。import 'package:flutter/material.dart'; class MyApp extends StatefulWidget { @override _MyApp createState() => new _MyApp(); } class _MyApp extends State{ String _lastName; String _firstName; GlobalKey _formKey = new GlobalKey (); void _showMessage(String name) { showDialog ( context: context, child: new AlertDialog( content: new Text(name), actions: [ new FlatButton( onPressed: () { Navigator.pop(context); }, child: new Text('確定') ) ] ) ); } @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text('表單輸入') ), // Form:用于將多個(gè)表單控件組合在一起的容器 body: new Form( key: _formKey, child: new Column( children: [ // TextFieldd:包含輸入的表單控件,每個(gè)表單字段都應(yīng)該在FormField控件中 new TextField( labelText: '姓氏', // onSaved:當(dāng)通過(guò)Form.save()保存表單時(shí)調(diào)用的方法 onSaved: (InputValue value) { _lastName = value.text; } ), new TextField( labelText: '名字', onSaved: (InputValue value) { _firstName = value.text; } ), new Row( children: [ new RaisedButton( child: new Text('重置'), onPressed: () { // reset():將此Form下的每個(gè)TextField重置為初始狀態(tài) _formKey.currentState.reset(); _showMessage('姓名信息已經(jīng)重置'); } ), new RaisedButton( child: new Text('提交'), onPressed: () { // save():保存Form下的每個(gè)TextField _formKey.currentState.save(); _showMessage('你的姓名是'+_lastName+_firstName); } ) ] ) ] ) ) ); } } void main() { runApp(new MaterialApp( title: 'Flutter Demo', home: new MyApp() )); }