• flutter 多个Text会导致出线的解决方法


    参考:https://blog.csdn.net/zgcqflqinhao/article/details/85048090

    可以复制后,进行更改文字

    new Text.rich(
              //富文本文本框构造方法,可以显示多种样式的text,第一个参数为 TextSpan
              new TextSpan(
                  text: "我是一段测试文本", 
                  //文字样式,如果后面的子 TextSpan 没有覆盖该 TextStyle 中的属性,则使用该 TextStyle 指定的样式
                  style: new TextStyle(
                      //文字颜色,整体的文字颜色,如果后面的子 TextSpan 没有覆盖该属性,则使用该文字颜色
                      color: new Color(0xFF000000),
                      //同上
                      fontSize: 20.0,
                      //同上
                      decoration: TextDecoration.underline),
                  //应该是手势识别监听器,后面用到手势监听再详细学习该类用法
    //          recognizer: ,
                  //子 TextSpan,可以指定多个
                  children: <TextSpan>[
                    new TextSpan(
                        text: "Hello",
                        style: new TextStyle(
                            color: new Color(0xFFFF0000),
                            fontSize: 30.0,
                            fontStyle: FontStyle.italic)),
                    new TextSpan(
                        text: "World",
                        style: new TextStyle(
                            color: new Color(0xFFFFFF00),
                            fontSize: 40.0,
                            fontWeight: FontWeight.bold)),
                  ]),
              textDirection: TextDirection.ltr,
            ),
          ),
        
  • 相关阅读:
    java 基本数据类型的取值范围
    警惕自增的陷阱
    三元操作符的类型务必一致
    不要随便设置随机种子
    优先使用整形池
    IN、ANY、ALL与SOME
    第六章-序列:字符串、列表和元组 笔记
    第十二章-安全性
    第五章-数字 课后答案
    第十一章-约束、视图与事务
  • 原文地址:https://www.cnblogs.com/lude1994/p/13883272.html
Copyright © 2020-2023  润新知