文本Widgets

2018-05-17  本文已影响0人  S睿_

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,
})

上一篇下一篇

猜你喜欢

热点阅读