您好,登錄后才能下訂單哦!
Input控件是質(zhì)感設(shè)計(jì)的文本輸入控件,它在用戶每次輸入時(shí)都會(huì)調(diào)用onChanged回調(diào)時(shí),都會(huì)更新字段值,還可以實(shí)時(shí)的對(duì)用戶輸入進(jìn)行響應(yīng)。
import 'package:flutter/material.dart'; class MyApp extends StatefulWidget { @override _MyApp createState() => new _MyApp(); } class _MyApp extends State<MyApp> { // InputValue:文本輸入字段的配置信息 InputValue _phoneValue = const InputValue(); InputValue _passwordValue = const InputValue(); void _showMessage(String name) { showDialog<Null>( context: context, child: new AlertDialog( content: new Text(name), actions: <Widget>[ new FlatButton( onPressed: () { Navigator.pop(context); }, child: new Text('確定') ) ] ) ); } @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text('直接輸入') ), body: new Column( children: <Widget> [ new Input( // value:文本輸入字段的當(dāng)前狀態(tài) value: _phoneValue, // keyboardType:用于編輯文本的鍵盤類型 keyboardType: TextInputType.number, // icon:在輸入字段旁邊顯示的圖標(biāo) icon: new Icon(Icons.account_circle), // labelText:顯示在輸入字段上方的文本 labelText: '手機(jī)', // hintText:要在輸入字段中內(nèi)嵌顯示的文本 hintText: '請(qǐng)輸入手機(jī)號(hào)碼', // onChanged:正在編輯的文本更改時(shí)調(diào)用 onChanged: (InputValue value) { setState((){ _phoneValue = value; }); } ), new Input( value: _passwordValue, // obscureText:是否隱藏正在編輯的文本 obscureText: true, labelText: '密碼', onChanged: (InputValue value) { setState((){ _passwordValue = value; }); }, // onSubmitted:當(dāng)用戶在鍵盤上點(diǎn)擊完成編輯時(shí)調(diào)用 onSubmitted: (InputValue value) { if(value.text.length<6){ _showMessage('密碼不少于6位'); } } ), new RaisedButton( child: new Text('提交'), onPressed: () { _showMessage(_phoneValue.text+'/'+_passwordValue.text); } ) ] ) ); } } void main() { runApp(new MaterialApp( title: 'Flutter Demo', home: new MyApp() )); }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。