FormField控件是單一表單字段,這個(gè)控件維護(hù)表單字段的當(dāng)前狀態(tài),以便更新和驗(yàn)證錯(cuò)誤能在UI中可見(jiàn)。TextField控件就是在FormField中包裝了一個(gè)Input控件(后面的文章講解),F(xiàn)ormField維護(hù)輸入的當(dāng)前值,使您不需要自己管理它,更容易一次保存,重置或驗(yàn)證多個(gè)字段。
成都創(chuàng)新互聯(lián)公司IDC提供業(yè)務(wù):成都服務(wù)器托管,成都服務(wù)器租用,成都服務(wù)器托管,重慶服務(wù)器租用等四川省內(nèi)主機(jī)托管與主機(jī)租用業(yè)務(wù);數(shù)據(jù)中心含:雙線機(jī)房,BGP機(jī)房,電信機(jī)房,移動(dòng)機(jī)房,聯(lián)通機(jī)房。
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() )); }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。