Wigets学习之Form表单
时间:2021-07-06 01:34:03
Form
创建一个表单
child
:子部件(必填)autovalidate
:是否自动校验输入内容,默认为false
,如果为true
当子FormField
内容发生变化后就会触发校验,为false
可通过FromState.validate
手动触发校验onWillPop
:是否可以直接返回,此参数值是一个返回Future<bool>
的函数,如果解析为false
则当前路由不会返回,为true
则返回上一个路由onChanged
:当子FormField
内容发生变化就会触发
TextFormField
创建一个包含
Textfield
的FormField
controller
:指定默认值,通过TextEditingController(text:'默认值')
来指定,不能和initialValue
同时使用initialValue
:指定初始值,此参数只会在部件创建时指定,如果值改变则输入框不会内容不会改变,如果会动态改变输入框的值则使用controller
decoration
:装饰器,通过InputDecoration
来设置keyboardType
:设置文本,通过TextInputType
指定TextInputType.text
:文本输入TextInputType.multiline
:多行输入TextInputType.number
:数字输入TextInputType.phone
:手机号键盘TextInputType.datetime
:地址键盘TextInputType.emailAddress
:邮箱键盘TextInputType.url
:链接键盘TextInputType.visiblePassword
:显示密码键盘TextInputType.name
:人名键盘TextInputType.streetAddress
:邮政地址键盘TextInputType.visiblePassword
:显示密码键盘textCapitalization
:设置键盘大小写规则,默认为TextCapitalization.none
TextCapitalization.none
:小写键盘TextCapitalization.words
:单词首字母大写TextCapitalization.sentences
:首句字母大写TextCapitalization.characters
:字母大写textInputAction
:键盘类型style
:输入框文字样式textDirection
:文字排列方式textAlign
:文字水平对齐方式,默认为TextAlign.start
textAlignVertical
:文字垂直对齐方式autofocus
:自动获取焦点,默认为false
readOnly
:是否只读,默认为false
toolbarOptions
:双击或长按之后的操作,通过ToolbarOptions
指定,ToolbarOptions
参数如下:selectAll
:全选copy
:复制cut
:剪切paste
:粘贴
enableInteractiveSelection
:输入框选择是否可用,默认为true
,为false
时,则toolbarOptions
设置无效showCursor
:是否显示光标,默认为:true
obscuringCharacter
:掩码字符(只能指定一个字符),当指定obscureText=true
时,此参数生效,每次输入的值在显示的时候都会被掩码替换,默认为•
obscureText
:是否显示掩码,默认为false
autocorrect
:是否启用自动校验,默认为true
enableSuggestions
:是否在输入时给出建议,默认为true
maxLines
:最大行数,默认为1
minLines
:最小行数maxLength
:最大长度maxLengthEnforced
:达到maxLength
长度后是否阻止输入onChanged
:输入框内容发生变化时触发onTap
:点击输入框时触发onEditingComplete
:编辑完成时触发,即点击键盘上的完成或回车时onFieldSubmitted
:完成输入框编辑后触发,接收一个当前输入框的值onSaved
:当调用FormState
的save
函数时触发validator
:校验函数,通过FormState
的validate
函数触发,返回null
为校验通过,返回字符串则为错误提示inputFormatters
:输入规则,是一个List<TextInputFormatter>
类型enabled
:是否可用cursorWidth
:光标宽度cursorHeight
:光标高度cursorRadius
:光标圆角cursorColor
:光标颜色keyboardAppearance
:键盘主题,默认为Brightness.light(浅色)
,可选值为Brightness.dark(深色)
InputDecoration
设置
Input
样式
icon
:左侧图标labelText
:左侧 label 文字labelStyle
:左侧 label 样式helperText
:在输入框下方出现用于展示提示信息的helperStyle
:提示信息的样式helperMaxLines
:提示信息最多展示几行hintText
:占位文本和HTML
中的placeholder
一样hintStyle
:占位文本样式hintTextDirection
:占位文本的文字排列方式hintMaxLines
:占位文本最多展示几行errorText
:错误信息errorStyle
:错误信息样式errorMaxLines
:错误信息最多展示几行floatingLabelBehavior
:焦点获取时 label 展示行为,默认为FloatingLabelBehavior.auto
,可选值FloatingLabelBehavior.always(总是显示)
,FloatingLabelBehavior.never(从不显示)
isCollapsed
:是否将label
和输入框收起,默认为false
,如果为true
,则label
会重叠在输入框上,此时最好设置floatingLabelBehavior=FloatingLabelBehavior.never
isDense
:是否将输入框作为Form
的一部分,默认为false
,当为true
时上下间距会少一点contentPadding
:输入框内边距prefixIcon
:前缀图标prefixIconConstraints
:前缀图标约束prefix
:自定义前缀部件prefixText
:前缀文字prefixStyle
:前缀样式suffixIcon
:后缀图标suffixIconConstraints
:后缀图标约束suffix
:自定义后缀部件suffixText
:后缀文字suffixStyle
:后缀样式counter
:自定义输入框下的内容counterText
:输入框下的内容counterStyle
:输入下的内容样式filled
:是否显示输入框背景,默认为false
fillColor
:背景颜色
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Form表单学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
String userName = '';
String password = '';
GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Form表单学习'),
),
body: Form(
key: _formKey,
child: Padding(
padding: EdgeInsets.all(24),
child: Column(
children: [
TextFormField(
controller: TextEditingController(text: userName),
style: TextStyle(color: Colors.cyan),
toolbarOptions: ToolbarOptions(
selectAll: true, copy: true, cut: true, paste: true),
onEditingComplete: () => print('onEditingComplete'),
onFieldSubmitted: (value) => print(value),
onSaved: (value) => setState(() {
userName = value!;
}),
validator: (value) => value!.isEmpty ? '请输入账号' : null,
decoration:
InputDecoration(labelText: '账号', hintText: '请输入账号')),
TextFormField(
obscureText: true,
obscuringCharacter: '*',
cursorColor: Colors.yellow,
onSaved: (value) => setState(() {
password = value!;
}),
decoration: InputDecoration(
hintText: '请输入密码',
counterText: '忘记密码?',
counterStyle: TextStyle(color: Colors.black12),
),
),
Container(
width: double.infinity,
height: 48,
margin: EdgeInsets.only(top: 24),
child: ElevatedButton(
onPressed: () {
_formKey.currentState!.validate();
_formKey.currentState!.save();
print('userName:$userName,password:$password');
},
child: Text("登录"),
style: ButtonStyle(
elevation: MaterialStateProperty.all(0),
),
)),
],
),
),
),
);
}
}
TextField
输入框
参数和TextFormField
基本保存一致
Radio
单选按钮
value
:单选值(必填)groupValue
:选中的值(必填)onChanged
:改变事件(必填),接收当前Radio
的value
toggleable
:是否可改变,默认为false
,为true
时,选中的Radio
可再次点击取消activeColor
:选中的颜色fillColor
:默认颜色,通过MaterialStateProperty
指定,指定此参数之后activeColor
无效,可通过MaterialStateProperty.resolveWith
判断状态设置不同颜色
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Textfield学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
int radio = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Radio学习'),
),
body: Column(
children: [
Radio(
value: 1,
groupValue: radio,
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
Radio(
value: 2,
groupValue: radio,
toggleable: true,
activeColor: Colors.red,
onChanged: (int? value) {
setState(() {
radio = value != null ? value : 0;
});
}),
Radio(
value: 3,
groupValue: radio,
fillColor: MaterialStateProperty.all(Colors.orange),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
Radio(
value: 4,
groupValue: radio,
fillColor: MaterialStateProperty.resolveWith((states) {
return states.contains(MaterialState.selected)
? Colors.red
: Colors.yellow;
}),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
Radio(
value: 4,
groupValue: radio,
fillColor: MaterialStateProperty.resolveWith((states) {
return states.contains(MaterialState.selected)
? Colors.red
: Colors.yellow;
}),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
],
),
);
}
}
RadioListTile
带有标题的单选按钮
value
:单选值(必填)groupValue
:选中的值(必填)onChanged
:改变事件(必填),接收当前RadioListTile
的value
toggleable
:是否可改变,默认为false
,为true
时,选中的RadioListTile
可再次点击取消title
:标题部件subtitle
:副标题部件selected
:内容部分是否为选中状态,默认为false
activeColor
:选中的颜色tileColor
:当前RadioListTile
背景色selectedTileColor
:当前RadioListTile
选中背景色
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'RadioListTile学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
int radio = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('TextField学习'),
),
body: Column(
children: [
RadioListTile(
value: 1,
groupValue: radio,
title: Text('选项1'),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
RadioListTile(
value: 2,
groupValue: radio,
title: Text('选项2'),
subtitle: Text('副标题'),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
RadioListTile(
value: 3,
groupValue: radio,
title: Text('选项3'),
subtitle: Text('副标题'),
activeColor: Colors.white,
selected: radio == 3,
tileColor: Colors.cyan,
selectedTileColor: Colors.orange,
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
RadioListTile(
value: 4,
groupValue: radio,
title: Text('选项4'),
subtitle: Text('副标题'),
onChanged: (int? value) {
setState(() {
radio = value!;
});
}),
],
),
);
}
}
Checkbox
复选框
value
:是否选中(必填)onChanged
:改变事件(必填)tristate
:默认为false
,如果为true
,未选中状态为null
,为false
则为选中状态为false
activeColor
:选中的颜色checkColor
:选中的√
颜色splashRadius
:点击水波纹大小materialTapTargetSize
:最小点击范围,默认为MaterialTapTargetSize.padded
,可选值为MaterialTapTargetSize.shrinkWrap
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Checkbox学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
List<int> _selectList = [];
List<int> list = [1, 2, 3, 4];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Checkbox学习'),
),
body: Column(
children: list
.map((item) => Row(
children: [
Checkbox(
value: _selectList.contains(item),
activeColor: Colors.yellow,
checkColor: Colors.black,
splashRadius: 30,
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
onChanged: (value) {
value!
? _selectList.add(item)
: _selectList.remove(item);
setState(() {
_selectList = _selectList;
});
}),
Text(item.toString())
],
))
.toList(),
),
);
}
}
CheckboxListTile
带有标题的复选框
value
:是否选中(必填)onChanged
:改变事件(必填)activeColor
:选中的颜色checkColor
:选中的√
颜色title
:标题tileColor
:CheckboxListTile
背景色selectedTileColor
:CheckboxListTile
选中的背景色subtitle
:副标题isThreeLine
:平铺是否要显示三行文本,默认为false
dense
:平铺是否为垂直密集selected
:内容部分是否选中,默认为false
tristate
:默认为false
,如果为true
,未选中状态为null
,为false
则为选中状态为false
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Checkbox学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
List<int> _selectList = [];
List<int> list = [1, 2, 3, 4];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Checkbox学习'),
),
body: Column(
children: list
.map((item) => CheckboxListTile(
value: _selectList.contains(item),
title: Text(item.toString()),
subtitle: Text('$item subTitle'),
activeColor: Colors.yellow,
checkColor: Colors.black,
onChanged: (value) {
value! ? _selectList.add(item) : _selectList.remove(item);
setState(() {
_selectList = _selectList;
});
}))
.toList(),
),
);
}
}
Switch
开关
value
:是否选中(必填)onChanged
:改变事件(必填)activeColor
:选中颜色activeTrackColor
:选中的track
颜色,即:横向部分的颜色inactiveThumbColor
:未选中的Thumb
颜色,即:圆形部分的颜色inactiveTrackColor
:未选中的track
颜色,即:横向部分的颜色thumbColor
:Thumb
颜色,即:圆形部分的颜色trackColor
:track
颜色,即:横向部分的颜色materialTapTargetSize
:最小点击范围,默认为MaterialTapTargetSize.padded
,可选值为MaterialTapTargetSize.shrinkWrap
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '开关学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('开关学习'),
),
body: Column(
children: [
Switch(
value: true,
activeColor: Colors.red,
activeTrackColor: Colors.cyan,
inactiveThumbColor: Colors.yellow,
onChanged: (value) {
print(value);
}),
Switch(
value: false,
activeColor: Colors.red,
inactiveThumbColor: Colors.yellow,
inactiveTrackColor: Colors.orange,
onChanged: (value) {
print(value);
}),
Switch(
value: false,
thumbColor: MaterialStateProperty.all(Colors.cyan),
trackColor: MaterialStateProperty.all(Colors.amber),
onChanged: (value) {
print(value);
}),
],
),
);
}
}
SwitchListTile
带有标题的开关
value
:是否选中(必填)onChanged
:改变事件(必填)activeColor
:选中颜色activeTrackColor
:选中的track
颜色,即:横向部分的颜色inactiveThumbColor
:未选中的Thumb
颜色,即:圆形部分的颜色inactiveTrackColor
:未选中的track
颜色,即:横向部分的颜色title
:标题tileColor
:CheckboxListTile
背景色selectedTileColor
:CheckboxListTile
选中的背景色subtitle
:副标题isThreeLine
:平铺是否要显示三行文本,默认为false
dense
:平铺是否为垂直密集contentPadding
:内边距secondary
:左侧部件
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '开关学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
bool _opened = false;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('开关学习'),
),
body: Column(
children: [
SwitchListTile(
value: _opened,
secondary: Icon(Icons.cached),
title: Text('开关1'),
onChanged: (value) {
setState(() {
_opened = value;
});
})
],
),
);
}
}
Slider
滑块
value
:是否选中(必填)onChanged
:改变事件(必填)onChangeStart
:改变开始事件onChangeEnd
:改变结束事件min
:最小值max
:最大值divisions
:间隔数量,设置之后每次改变必须是间隔量label
:滑块的 label,显示在圆点上方activeColor
:已用滑块的颜色inactiveColor
:未用滑块的颜色
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '滑块学习',
home: Home(),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
double _value = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('滑块学习'),
),
body: Column(
children: [
Slider(
min: 0,
max: 100,
value: _value,
divisions: 10,
label: '这是一个label',
activeColor: Colors.orange,
inactiveColor: Colors.red,
onChangeStart: (value) {
print('change start $value');
},
onChanged: (value) {
print(value);
},
onChangeEnd: (value) {
print('change end $value');
setState(() {
_value = value;
});
},
),
],
),
);
}
}