美文网首页
文本Widgets

文本Widgets

作者: S睿_ | 来源:发表于2018-05-17 15:02 被阅读0次

    Display and style text

    Text: StatelessWidget
    RichText : LeafRenderObjectWidget
    DefaultTextStyle

    Text({
    Key key,
    this.style,
    this.textAlign,
    this.textDirection,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,
    })

    RichText({
    Key key,
    @required this.text,
    this.textAlign: TextAlign.start,
    this.textDirection,
    this.softWrap: true,
    this.overflow: TextOverflow.clip,
    this.textScaleFactor: 1.0,
    this.maxLines,
    })

    相关文章

      网友评论

          本文标题:文本Widgets

          本文链接:https://www.haomeiwen.com/subject/fzmbdftx.html