效果圖
b475a229bd86d3fef64725b1a907605.jpg
new TextField(
onChanged: (str) {
username = str;
print(username);
},
decoration: new InputDecoration(
labelText: '用戶名',
hintText: '請輸入英文或數(shù)字',
),
maxLines: 1,
onSubmitted: (text) {
FocusScope.of(context).reparentIfNeeded(node);
},
),
new TextField(
onChanged: (text) {
pwd = text;
print(pwd);
},
obscureText: true,
maxLines: 1,
decoration:
new InputDecoration(hintText: '請輸入長度大于6的密碼', labelText: '密碼'),
keyboardType: TextInputType.text,
onSubmitted: (text) {},
),