当前位置:   article > 正文

Flutter学习:基础组件(一)_flutter foreground

flutter foreground
1.Text

用于显示单个样式的文本控件,字符串可以显示一行或者多行,具体取决于布局约束。
text的属性值:

 const Text(this.data, {
    Key key,
    this.style,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,
    this.semanticsLabel,//图像的语义描述,用于向Andoid上的TalkBack和iOS上的VoiceOver提供图像描述
  }) : assert(data != null),
       textSpan = null,
       super(key: key);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
style文字基本样式设置,包括(inherit, color, fontSize, fontWeight, fontStyle, letterSpacing, wordSpacing, textBaseline, height, locale, foreground, background,)
textAlign文本对齐方式(如左对齐,右对齐,中心对齐等)
textDirection有两种方式:TextDirection.rtl: 在这里插入图片描述TextDirection.ltr: 在这里插入图片描述
locale分别是languageCode,scriptCode和countryCode的语言, 脚本和 区域。
softWrap文本是否可以换行
overflow对文本进行处理,如果不换行结尾显示省略,还是变模糊等有个属性值(TextOverflow.clip,TextOverflow.ellipsis,TextOverflow.fade)
textScaleFactor文本比例缩放因子
maxLines文本最多显示行数

代码如下:

class TestText extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Text(
      'hello world hello world hello world hello world hello world hello world',
      textAlign: TextAlign.left,
      textDirection: TextDirection.ltr,
      locale: Locale.fromSubtags(languageCode: 'und'),
      softWrap: true,
      overflow: TextOverflow.clip,
      textScaleFactor: 1.5,
      maxLines: 2,
      semanticsLabel: ,
      style: TextStyle(
          inherit: false,
          color: Colors.blue,
          fontSize: 20,
          height: 1
      ),
    );
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

对于文字样式属性的基本了解:

属性介绍
inherit是否继承TextSpan tree的样式,默认为true
color字体颜色
fontSize字体大小
fontWeight字体的权重 通过这个fontWeight: FontWeight.w100调节字体的粗细
fontStyle字体样式,有斜体字,正常字体
letterSpacing字符间距
wordSpacing字间距,包括一个单词与一个单词之间的间距
textBaseline文本基线
height行高
foreground文本前景绘制图
background文本背景绘制图
decoration添加上划线,下划线,删除线(如TextDecoration.lineThrough)
style: TextStyle(
          inherit: false,
          color: Colors.blue,
          fontSize: 20,
          fontWeight: FontWeight.w100,
          fontStyle: FontStyle.italic,
          letterSpacing: 1.0,
          wordSpacing: 20,
          textBaseline: TextBaseline.ideographic,
          height: 1,
          decoration: TextDecoration.lineThrough,
          decorationStyle: TextDecorationStyle.dashed,
          background:mPaint,
      ),
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

在这里插入图片描述

1.Text.rich

可以显示具有不同样式TextSpan的段落。
在他的构造器中多了TextSpan参数。

const Text.rich(this.textSpan, {
    Key key,
    this.style,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,
    this.semanticsLabel,
  }): assert(textSpan != null),
      data = null,
      super(key: key);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

TextSpan的构造器为:

const TextSpan({
    this.style,
    this.text,
    this.children,
    this.recognizer,
  });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

对于这几个参数的介绍:

参数名描述
style和Text控件的无差别
text文本标签
children集合,添加多个textSpan
recognizer手势识别,点击等一系列操作
class TestTextRich extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Text.rich(
      TextSpan(
        text: "hello world",
        children: <TextSpan>[
          TextSpan(
              text: "Hello world",
              style: TextStyle(
                  inherit: true,
                  fontStyle: FontStyle.italic
              )
          ),
          TextSpan(
              text: "hello world",
              style: TextStyle(
                  inherit: false,
                  fontWeight: FontWeight.bold,
                  fontSize: 50,
                  decoration: TextDecoration.underline
              )
          ),
        ],
        style: TextStyle(
          inherit: false,
          fontSize: 100,
          fontStyle: FontStyle.italic,
        ),
        recognizer: new TapGestureRecognizer()
          ..onTap = () {
            print("点击了父TextSpan");
          },
      ),
      softWrap: true,
      textDirection: TextDirection.rtl,
      textAlign: TextAlign.center,
    );
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

在这里插入图片描述

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

闽ICP备14008679号