15. 表单组件

文本框组件 TextFiled

属性作品类型
maxLines改成多行文本,最大行数int
onChanged文本框变化时的监听fun
decoration样式 InputDecoration
obscureText密码框bool
controller结合 textEditingController 可以配置表单默认显示的内容
TextField(
   decoration: InputDecoration(
       hintText: "用户名", // 提示词
       border: OutlineInputBorder(), // 带边框
  )
)

设置初始化值

late TextEditingController _xxx;
String username = "zhangsan";
String password = "";
void initState(){
   super.initState();
   _xxx = TextEditingController.fromValue(TextEditingValue(
  text: username,
       selection: TextSelection.fromPosition(TextPosition(
           offset: username.length;
      ))
  ))
}
使用
   
TextField(
controller: _xxx,
decoration: const InputDecoration(
hintText: "用户名",
       border: OutlineInputBorder()),
onChanged: (value) => setState(() {
username = value;
}
  ),
)

单选按钮组

Radio(
   value:1,
   onchanged:(){},
   groupValue:1
),
Radio(
   value:2,
   onchanged:(){},
   groupValue:1
),

RadioListTile 单选按钮组

RadioListTile(
title: Text("男"),
value: 1,
groupValue: 1,
onChanged: (){}
),
RadioListTile(
title: Text("女"),
value: 2,
groupValue: 1,
onChanged: (){}
),

checkBox 多选按钮

Checkbox 用法同 Radio

checkBoxListTile 多选按钮组

用法同 RadioListTile

Switch 开关

bool flag = true;
Switch(
value:flag,
   onChange(val){
       setState((){
           flag = value
      })
  }
)

进度条

圆形加载

CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation(Colors.red),
backgroundColor: Colors.white
)

IOS圆形加载

import "packge:flutter/cupertino.dart"
CupertinoActivityIndicator(radius:24)

线性进度

LinearProgressIndicator(
value: 0.1,
valueColor: AlwaysStoppedAnimation(Colors.blue),
backgroundColor: Colors.grey,
)
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇