当前位置:   article > 正文

Flutter(三)之Flutter的基础Widget_flutter

flutter

1. 文本Widget

在Android中,我们使用TextView,iOS中我们使用UILabel来显示文本;

Flutter中,我们使用Text组件控制文本如何展示;

1.1. 普通文本展示

在Flutter中,我们可以将文本的控制显示分成两类:

  • 控制文本布局的参数: 如文本对齐方式 textAlign、文本排版方向 textDirection,文本显示最大行数 maxLines、文本截断规则 overflow 等等,这些都是构造函数中的参数;

  • 控制文本样式的参数: 如字体名称 fontFamily、字体大小 fontSize、文本颜色 color、文本阴影 shadows 等等,这些参数被统一封装到了构造函数中的参数 style 中;

下面我们来看一下其中一些属性的使用:

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Text(
  5. "《定风波》 苏轼 \n莫听穿林打叶声,何妨吟啸且徐行。\n竹杖芒鞋轻胜马,谁怕?一蓑烟雨任平生。",
  6. style: TextStyle(
  7. fontSize: 20,
  8. color: Colors.purple
  9. ),
  10. );
  11. }
  12. }

展示效果如下:

image-20190902101522966

我们可以通过一些属性来改变Text的布局:

  • textAlign:文本对齐方式,比如TextAlign.center

  • maxLines:最大显示行数,比如1

  • overflow:超出部分显示方式,比如TextOverflow.ellipsis

  • textScaleFactor:控制文本缩放,比如1.24

代码如下:

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Text(
  5. "《定风波》 苏轼 \n莫听穿林打叶声,何妨吟啸且徐行。\n竹杖芒鞋轻胜马,谁怕?一蓑烟雨任平生。",
  6. textAlign: TextAlign.center, // 所有内容都居中对齐
  7. maxLines: 3, // 显然 "生。" 被删除了
  8. overflow: TextOverflow.ellipsis, // 超出部分显示...
  9. // textScaleFactor: 1.25,
  10. style: TextStyle(
  11. fontSize: 20,
  12. color: Colors.purple
  13. ),
  14. );
  15. }
  16. }

image-20190902102035307

1.2. 富文本展示

前面展示的文本,我们都应用了相同的样式,如果我们希望给他们不同的样式呢?

  • 比如《定风波》我希望字体更大一点,并且是黑色字体,并且有加粗效果;

  • 比如 苏轼 我希望是红色字体;

如果希望展示这种混合样式,那么我们可以利用分片来进行操作(在Android中,我们可以使用SpannableString,在iOS中,我们可以使用NSAttributedString完成,了解即可)

代码如下:

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Text.rich(
  5. TextSpan(
  6. children: [
  7. TextSpan(text: "《定风波》", style: TextStyle(fontSize: 25, fontWeight: FontWeight.bold, color: Colors.black)),
  8. TextSpan(text: "苏轼", style: TextStyle(fontSize: 18, color: Colors.redAccent)),
  9. TextSpan(text: "\n莫听穿林打叶声,何妨吟啸且徐行。\n竹杖芒鞋轻胜马,谁怕?一蓑烟雨任平生。")
  10. ],
  11. ),
  12. style: TextStyle(fontSize: 20, color: Colors.purple),
  13. textAlign: TextAlign.center,
  14. );
  15. }
  16. }

image-20190902103333353

二. 按钮Widget

2.1. 按钮的基础

Material widget库中提供了多种按钮Widget如FloatingActionButton、RaisedButton、FlatButton、OutlineButton等

我们直接来对他们进行一个展示:

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Column(
  5. children: <Widget>[
  6. FloatingActionButton(
  7. child: Text("FloatingActionButton"),
  8. onPressed: () {
  9. print("FloatingActionButton Click");
  10. },
  11. ),
  12. RaisedButton(
  13. child: Text("RaisedButton"),
  14. onPressed: () {
  15. print("RaisedButton Click");
  16. },
  17. ),
  18. FlatButton(
  19. child: Text("FlatButton"),
  20. onPressed: () {
  21. print("FlatButton Click");
  22. },
  23. ),
  24. OutlineButton(
  25. child: Text("OutlineButton"),
  26. onPressed: () {
  27. print("OutlineButton Click");
  28. },
  29. )
  30. ],
  31. );
  32. }
  33. }

image-20190902105017343

2.2. 自定义样式

前面的按钮我们使用的都是默认样式,我们可以通过一些属性来改变按钮的样式

  1. RaisedButton(
  2. child: Text("同意协议", style: TextStyle(color: Colors.white)),
  3. color: Colors.orange, // 按钮的颜色
  4. highlightColor: Colors.orange[700], // 按下去高亮颜色
  5. shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)), // 圆角的实现
  6. onPressed: () {
  7. print("同意协议");
  8. },
  9. )

image-20190902110011756

事实上这里还有一个比较常见的属性:elevation,用于控制阴影的大小,很多地方都会有这个属性,大家可以自行演示一下

button:本身会有上下间距,button本身会有一个大小,让设置变小。 button会有内边距

  1. class ButtonExtensionDemo extends StatelessWidget {
  2. const ButtonExtensionDemo({
  3. Key key,
  4. }) : super(key: key);
  5. @override
  6. Widget build(BuildContext context) {
  7. // 1.默认情况下Button上下有一定的间距 默认是48px,会扩充
  8. // 2.让Button变小: ButtonTheme 正常button会有默认大小,
  9. // 3.取出Button的内边距
  10. return Column(
  11. children: <Widget>[
  12. ButtonTheme(
  13. minWidth: 30,
  14. height: 10,
  15. child: FlatButton(
  16. padding: EdgeInsets.all(0), // button的内边距设置,还要考虑上面的height和minwidth
  17. color: Colors.red,
  18. materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,// 去掉上下间距
  19. child: Text("Flat Button1"),
  20. textColor: Colors.white,
  21. onPressed: () {},
  22. ),
  23. )
  24. ],
  25. );
  26. }
  27. }

三. 图片Widget

图片可以让我们的应用更加丰富多彩,Flutter中使用Image组件

Image组件有很多的构造函数,我们这里主要学习两个:

  • Image.assets:加载本地资源图片;

  • Image.network:加载网络中的图片;

3.1. 加载网络图片

相对来讲,Flutter中加载网络图片会更加简单,直接传入URL并不需要什么配置,所以我们先来看一下Flutter中如何加载网络图片。

我们先来看看Image有哪些属性可以设置:

  1. const Image({
  2. ...
  3. this.width, //图片的宽
  4. this.height, //图片高度
  5. this.color, //图片的混合色值
  6. this.colorBlendMode, //混合模式
  7. this.fit,//缩放模式
  8. this.alignment = Alignment.center, //对齐方式
  9. this.repeat = ImageRepeat.noRepeat, //重复方式
  10. ...
  11. })
  • widthheight:用于设置图片的宽、高,当不指定宽高时,图片会根据当前父容器的限制,尽可能的显示其原始大小,如果只设置widthheight的其中一个,那么另一个属性默认会按比例缩放,但可以通过下面介绍的fit属性来指定适应规则。

  • fit:该属性用于在图片的显示空间和图片本身大小不同时指定图片的适应模式。适应模式是在BoxFit中定义,它是一个枚举类型,有如下值:

    • fill:会拉伸填充满显示空间,图片本身长宽比会发生变化,图片会变形。

    • cover:会按图片的长宽比放大后居中填满显示空间,图片不会变形,超出显示空间部分会被剪裁。

    • contain:这是图片的默认适应规则,图片会在保证图片本身长宽比不变的情况下缩放以适应当前显示空间,图片不会变形。

    • fitWidth:图片的宽度会缩放到显示空间的宽度,高度会按比例缩放,然后居中显示,图片不会变形,超出显示空间部分会被剪裁。

    • fitHeight:图片的高度会缩放到显示空间的高度,宽度会按比例缩放,然后居中显示,图片不会变形,超出显示空间部分会被剪裁。

    • none:图片没有适应策略,会在显示空间内显示图片,如果图片比显示空间大,则显示空间只会显示图片中间部分。

  • color和 colorBlendMode:在图片绘制时可以对每一个像素进行颜色混合处理,color指定混合色,而colorBlendMode指定混合模式;

  • repeat:当图片本身大小小于显示空间时,指定图片的重复规则。

我们对其中某些属性做一个演练:

  • 注意,这里我用了一个Container,大家可以把它理解成一个UIView或者View,就是一个容器;

  • 后面我会专门讲到这个组件的使用;

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Center(
  5. child: Container(
  6. child: Image.network(
  7. "http://img0.dili360.com/ga/M01/48/3C/wKgBy1kj49qAMVd7ADKmuZ9jug8377.tub.jpg",
  8. alignment: Alignment.topCenter,
  9. repeat: ImageRepeat.repeatY,
  10. color: Colors.red,
  11. colorBlendMode: BlendMode.colorDodge,
  12. ),
  13. width: 300,
  14. height: 300,
  15. color: Colors.yellow,
  16. ),
  17. );
  18. }
  19. }

image-20190902113310213

3.2. 加载本地图片

加载本地图片稍微麻烦一点,需要将图片引入,并且进行配置

  1. class MyHomeBody extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Center(
  5. child: Container(
  6. width: 300,
  7. height: 300,
  8. color: Colors.yellow,
  9. child: Image.asset("images/test.jpeg"),
  10. ),
  11. );
  12. }
  13. }

image-20190902114616699

  1. lass ImageExtensionDemo extends StatelessWidget {
  2. const ImageExtensionDemo({
  3. Key key,
  4. @required this.imageURL,
  5. }) : super(key: key);
  6. final String imageURL;
  7. @override
  8. Widget build(BuildContext context) {
  9. // 1.占位图的问题: FadeInImage
  10. // 2.图片缓存(默认缓存): 1000张 100m
  11. return FadeInImage(
  12. fadeOutDuration: Duration(milliseconds: 1),
  13. fadeInDuration: Duration(milliseconds: 1),
  14. placeholder: AssetImage("assets/images/juren.jpeg"),
  15. image: NetworkImage(imageURL),
  16. );
  17. }
  18. }

icon

  1. class IconExtensionDemo extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. // Icon字体图标和图片图标
  5. // 1.字体图标矢量图(放大的时候不会失真)
  6. // 2.字体图标可以设置颜色
  7. // 3.图标很多时, 占据空间更小
  8. // return Icon(Icons.pets, size: 300, color: Colors.orange,);
  9. // return Icon(IconData(0xe91d, fontFamily: 'MaterialIcons'), size: 300, color: Colors.orange,);
  10. // 1.0xe91d -> unicode编码
  11. // 2.设置对应的字体
  12. return Text("\ue91d", style: TextStyle(fontSize: 100, color: Colors.orange, fontFamily: "MaterialIcons"),);
  13. }
  14. }

3.3. 实现圆角图像

在Flutter中实现圆角效果也是使用一些Widget来实现的。

3.3.1. 实现圆角头像

方式一:CircleAvatar

CircleAvatar可以实现圆角头像,也可以添加一个子Widget:

  1. const CircleAvatar({
  2. Key key,
  3. this.child, // 子Widget
  4. this.backgroundColor, // 背景颜色
  5. this.backgroundImage, // 背景图像
  6. this.foregroundColor, // 前景颜色
  7. this.radius, // 半径
  8. this.minRadius, // 最小半径
  9. this.maxRadius, // 最大半径
  10. })

我们来实现一个圆形头像:

  • 注意一:这里我们使用的是NetworkImage,因为backgroundImage要求我们传入一个ImageProvider;

    • ImageProvider是一个抽象类,事实上所有我们前面创建的Image对象都有包含image属性,该属性就是一个ImageProvider

  • 注意二:这里我还在里面添加了一个文字,但是我在文字外层包裹了一个Container;

    • 这里Container的作用是为了可以控制文字在其中的位置调整;

  1. class HomeContent extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Center(
  5. child: CircleAvatar(
  6. radius: 100,
  7. backgroundImage: NetworkImage("https://tva1.sinaimg.cn/large/006y8mN6gy1g7aa03bmfpj3069069mx8.jpg"),
  8. child: Container(
  9. alignment: Alignment(0, .5),
  10. width: 200,
  11. height: 200,
  12. child: Text("兵长利威尔")
  13. ),
  14. ),
  15. );
  16. }
  17. }

image-20190924081343639

方式二:ClipOval

ClipOval也可以实现圆角头像,而且通常是在只有头像时使用

  1. class HomeContent extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Center(
  5. child: ClipOval(
  6. child: Image.network(
  7. "https://tva1.sinaimg.cn/large/006y8mN6gy1g7aa03bmfpj3069069mx8.jpg",
  8. width: 200,
  9. height: 200,
  10. ),
  11. ),
  12. );
  13. }
  14. }

image-20190924092127687

实现方式三:Container+BoxDecoration

这种方式我们放在讲解Container时来讲这种方式

3.3.2. 实现圆角图片

方式一:ClipRRect

ClipRRect用于实现圆角效果,可以设置圆角的大小。

实现代码如下,非常简单:

  1. class HomeContent extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Center(
  5. child: ClipRRect(
  6. borderRadius: BorderRadius.circular(10),
  7. child: Image.network(
  8. "https://tva1.sinaimg.cn/large/006y8mN6gy1g7aa03bmfpj3069069mx8.jpg",
  9. width: 200,
  10. height: 200,
  11. ),
  12. ),
  13. );
  14. }
  15. }

image-20190924094516174

方式二:Container+BoxDecoration

这个也放到后面讲解Container时讲解

四. 表单Widget

和用户交互的其中一种就是输入框,比如注册、登录、搜索,我们收集用户输入的内容将其提交到服务器。

4.1. TextField的使用

4.1.1. TextField的介绍

TextField用于接收用户的文本输入,它提供了非常多的属性,我们来看一下源码:

  • 但是我们没必要一个个去学习,很多时候用到某个功能时去查看是否包含某个属性即可

  1. const TextField({
  2. Key key,
  3. this.controller,
  4. this.focusNode,
  5. this.decoration = const InputDecoration(),
  6. TextInputType keyboardType,
  7. this.textInputAction,
  8. this.textCapitalization = TextCapitalization.none,
  9. this.style,
  10. this.strutStyle,
  11. this.textAlign = TextAlign.start,
  12. this.textAlignVertical,
  13. this.textDirection,
  14. this.readOnly = false,
  15. ToolbarOptions toolbarOptions,
  16. this.showCursor,
  17. this.autofocus = false,
  18. this.obscureText = false,
  19. this.autocorrect = true,
  20. this.maxLines = 1,
  21. this.minLines,
  22. this.expands = false,
  23. this.maxLength,
  24. this.maxLengthEnforced = true,
  25. this.onChanged,
  26. this.onEditingComplete,
  27. this.onSubmitted,
  28. this.inputFormatters,
  29. this.enabled,
  30. this.cursorWidth = 2.0,
  31. this.cursorRadius,
  32. this.cursorColor,
  33. this.keyboardAppearance,
  34. this.scrollPadding = const EdgeInsets.all(20.0),
  35. this.dragStartBehavior = DragStartBehavior.start,
  36. this.enableInteractiveSelection = true,
  37. this.onTap,
  38. this.buildCounter,
  39. this.scrollController,
  40. this.scrollPhysics,
  41. })

我们来学习几个比较常见的属性:

  • 一些属性比较简单:keyboardType键盘的类型,style设置样式,textAlign文本对齐方式,maxLength最大显示行数等等;

  • decoration:用于设置输入框相关的样式

    • icon:设置左边显示的图标

    • labelText:在输入框上面显示一个提示的文本

    • hintText:显示提示的占位文字

    • border:输入框的边框,默认底部有一个边框,可以通过InputBorder.none删除掉

    • filled:是否填充输入框,默认为false

    • fillColor:输入框填充的颜色

  • controller

  • onChanged:监听输入框内容的改变,传入一个回调函数

  • onSubmitted:点击键盘中右下角的down时,会回调的一个函数

4.1.2. TextField的样式以及监听

我们来演示一下TextField的decoration属性以及监听:

  1. class HomeContent extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return Container(
  5. padding: EdgeInsets.all(20),
  6. child: Column(
  7. mainAxisAlignment: MainAxisAlignment.center,
  8. children: <Widget>[
  9. TextFieldDemo()
  10. ],
  11. ),
  12. );
  13. }
  14. }
  15. class TextFieldDemo extends StatefulWidget {
  16. @override
  17. _TextFieldDemoState createState() => _TextFieldDemoState();
  18. }
  19. class _TextFieldDemoState extends State<TextFieldDemo> {
  20. @override
  21. Widget build(BuildContext context) {
  22. return TextField(
  23. decoration: InputDecoration(
  24. icon: Icon(Icons.people),
  25. labelText: "username",
  26. hintText: "请输入用户名",
  27. border: InputBorder.none,
  28. filled: true,
  29. fillColor: Colors.lightGreen
  30. ),
  31. onChanged: (value) {
  32. print("onChanged:$value");
  33. },
  34. onSubmitted: (value) {
  35. print("onSubmitted:$value");
  36. },
  37. );
  38. }
  39. }

image-20190923165526780

4.1.3. TextField的controller

我们可以给TextField添加一个控制器(Controller),可以使用它设置文本的初始值,也可以使用它来监听文本的改变;

事实上,如果我们没有为TextField提供一个Controller,那么会Flutter会默认创建一个TextEditingController的,这个结论可以通过阅读源码得到:

  1. @override
  2. void initState() {
  3. super.initState();
  4. // ...其他代码
  5. if (widget.controller == null)
  6. _controller = TextEditingController();
  7. }

我们也可以自己来创建一个Controller控制一些内容:

  1. class _TextFieldDemoState extends State<TextFieldDemo> {
  2. final textEditingController = TextEditingController();
  3. @override
  4. void initState() {
  5. super.initState();
  6. // 1.设置默认值
  7. textEditingController.text = "Hello World";
  8. // 2.监听文本框
  9. textEditingController.addListener(() {
  10. print("textEditingController:${textEditingController.text}");
  11. });
  12. }
  13. // ...省略build方法
  14. }

image-20190923171132816

4.2. Form表单的使用

在我们开发注册、登录页面时,通常会有多个表单需要同时获取内容或者进行一些验证,如果对每一个TextField都分别进行验证,是一件比较麻烦的事情。

做过前端的开发知道,我们可以将多个input标签放在一个form里面,Flutter也借鉴了这样的思想:我们可以通过Form对输入框进行分组,统一进行一些操作。

4.2.1. Form表单的基本使用

Form表单也是一个Widget,可以在里面放入我们的输入框。

但是Form表单中输入框必须是FormField类型的

  • 我们查看刚刚学过的TextField是继承自StatefulWidget,并不是一个FormField类型;

  • 我们可以使用TextFormField,它的使用类似于TextField,并且是继承自FormField的;

我们通过Form的包裹,来实现一个注册的页面:

  1. class FormDemo extends StatefulWidget {
  2. @override
  3. _FormDemoState createState() => _FormDemoState();
  4. }
  5. class _FormDemoState extends State<FormDemo> {
  6. @override
  7. Widget build(BuildContext context) {
  8. return Form(
  9. child: Column(
  10. mainAxisAlignment: MainAxisAlignment.center,
  11. children: <Widget>[
  12. TextFormField(
  13. decoration: InputDecoration(
  14. icon: Icon(Icons.people),
  15. labelText: "用户名或手机号"
  16. ),
  17. ),
  18. TextFormField(
  19. obscureText: true,
  20. decoration: InputDecoration(
  21. icon: Icon(Icons.lock),
  22. labelText: "密码"
  23. ),
  24. ),
  25. SizedBox(height: 16,),
  26. Container(
  27. width: double.infinity,
  28. height: 44,
  29. child: RaisedButton(
  30. color: Colors.lightGreen,
  31. child: Text("注 册", style: TextStyle(fontSize: 20, color: Colors.white),),
  32. onPressed: () {
  33. print("点击了注册按钮");
  34. },
  35. ),
  36. )
  37. ],
  38. ),
  39. );
  40. }
  41. }

image-20190923175224983

4.2.2. 保存和获取表单数据

有了表单后,我们需要在点击注册时,可以同时获取和保存表单中的数据,怎么可以做到呢?

  • 1、需要监听注册按钮的点击,在之前我们已经监听的onPressed传入的回调中来做即可。(当然,如果嵌套太多,我们待会儿可以将它抽取到一个单独的方法中)

  • 2、监听到按钮点击时,同时获取用户名密码的表单信息。

如何同时获取用户名密码的表单信息?

  • 如果我们调用Form的State对象的save方法,就会调用Form中放入的TextFormField的onSave回调:

  1. TextFormField(
  2. decoration: InputDecoration(
  3. icon: Icon(Icons.people),
  4. labelText: "用户名或手机号"
  5. ),
  6. onSaved: (value) {
  7. print("用户名:$value");
  8. },
  9. ),
  • 但是,我们有没有办法可以在点击按钮时,拿到 Form对象 来调用它的save方法呢?

知识点:在Flutter如何可以获取一个通过一个引用获取一个StatefulWidget的State对象呢?

答案:通过绑定一个GlobalKey即可。

image-20190923202433788

案例代码演练:

  1. class FormDemo extends StatefulWidget {
  2. @override
  3. _FormDemoState createState() => _FormDemoState();
  4. }
  5. class _FormDemoState extends State<FormDemo> {
  6. final registerFormKey = GlobalKey<FormState>();
  7. String username, password;
  8. void registerForm() {
  9. registerFormKey.currentState.save();
  10. print("username:$username password:$password");
  11. }
  12. @override
  13. Widget build(BuildContext context) {
  14. return Form(
  15. key: registerFormKey,
  16. child: Column(
  17. mainAxisAlignment: MainAxisAlignment.center,
  18. children: <Widget>[
  19. TextFormField(
  20. decoration: InputDecoration(
  21. icon: Icon(Icons.people),
  22. labelText: "用户名或手机号"
  23. ),
  24. onSaved: (value) {
  25. this.username = value;
  26. },
  27. ),
  28. TextFormField(
  29. obscureText: true,
  30. decoration: InputDecoration(
  31. icon: Icon(Icons.lock),
  32. labelText: "密码"
  33. ),
  34. onSaved: (value) {
  35. this.password = value;
  36. },
  37. ),
  38. SizedBox(height: 16,),
  39. Container(
  40. width: double.infinity,
  41. height: 44,
  42. child: RaisedButton(
  43. color: Colors.lightGreen,
  44. child: Text("注 册", style: TextStyle(fontSize: 20, color: Colors.white),),
  45. onPressed: registerForm,
  46. ),
  47. )
  48. ],
  49. ),
  50. );
  51. }
  52. }

image-20190923202832219

4.2.3. 验证填写的表单数据

在表单中,我们可以添加验证器,如果不符合某些特定的规则,那么给用户一定的提示信息

比如我们需要账号和密码有这样的规则:账号和密码都不能为空。

按照如下步骤就可以完成整个验证过程:

  • 1、为TextFormField添加validator的回调函数;

  • 2、调用Form的State对象的validate方法,就会回调validator传入的函数;

image-20190923203843492

也可以为TextFormField添加一个属性:autovalidate

  • 不需要调用validate方法,会自动验证是否符合要求;

小技巧:

文字过长

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/313342
推荐阅读
相关标签
  

闽ICP备14008679号