Input控件是質感設計的文本輸入控件,它在用戶每次輸入時都會調用onChanged回調時,都會更新字段值,還可以實時的對用戶輸入進行響應。
10年積累的網站建設、做網站經驗,可以快速應對客戶對網站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網絡服務。我雖然不認識你,你也不認識我。但先網站設計后付款的網站建設流程,更有紅花崗免費網站建設讓你可以放心的選擇與我們合作。
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:文本輸入字段的當前狀態 value: _phoneValue, // keyboardType:用于編輯文本的鍵盤類型 keyboardType: TextInputType.number, // icon:在輸入字段旁邊顯示的圖標 icon: new Icon(Icons.account_circle), // labelText:顯示在輸入字段上方的文本 labelText: '手機', // hintText:要在輸入字段中內嵌顯示的文本 hintText: '請輸入手機號碼', // onChanged:正在編輯的文本更改時調用 onChanged: (InputValue value) { setState((){ _phoneValue = value; }); } ), new Input( value: _passwordValue, // obscureText:是否隱藏正在編輯的文本 obscureText: true, labelText: '密碼', onChanged: (InputValue value) { setState((){ _passwordValue = value; }); }, // onSubmitted:當用戶在鍵盤上點擊完成編輯時調用 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() )); }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創新互聯。
本文標題:Flutter質感設計之直接輸入
標題路徑:http://vcdvsql.cn/article18/pehjgp.html
成都網站建設公司_創新互聯,為您提供企業網站制作、營銷型網站建設、網頁設計公司、品牌網站設計、靜態網站、虛擬主機
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯