RenderParagraphX constructor

RenderParagraphX(
  1. InlineSpan text, {
  2. TextAlign textAlign = TextAlign.start,
  3. required TextDirection textDirection,
  4. bool softWrap = true,
  5. TextOverflow overflow = TextOverflow.clip,
  6. double textScaleFactor = 1.0,
  7. int? maxLines,
  8. TextWidthBasis textWidthBasis = TextWidthBasis.parent,
  9. TextHeightBehavior? textHeightBehavior,
  10. Locale? locale,
  11. StrutStyle? strutStyle,
  12. List<RenderBox>? children,
})

Creates a paragraph render object.

The text, textAlign, textDirection, overflow, softWrap, and textScaleFactor arguments must not be null.

The maxLines property may be null (and indeed defaults to null), but if it is not null, it must be greater than zero.

Implementation

RenderParagraphX(
  InlineSpan text, {
  TextAlign textAlign = TextAlign.start,
  required TextDirection textDirection,
  bool softWrap = true,
  TextOverflow overflow = TextOverflow.clip,
  double textScaleFactor = 1.0,
  int? maxLines,
  TextWidthBasis textWidthBasis = TextWidthBasis.parent,
  TextHeightBehavior? textHeightBehavior,
  Locale? locale,
  StrutStyle? strutStyle,
  List<RenderBox>? children,
})  : assert(text.debugAssertIsValid()),
      assert(maxLines == null || maxLines > 0),
      _softWrap = softWrap,
      _overflow = overflow,
      _textPainter = TextPainter(
        text: text,
        textAlign: textAlign,
        textDirection: textDirection,
        textScaleFactor: textScaleFactor,
        maxLines: maxLines,
        ellipsis: overflow == TextOverflow.ellipsis ? _kEllipsis : null,
        locale: locale,
        strutStyle: strutStyle,
        textWidthBasis: textWidthBasis,
        textHeightBehavior: textHeightBehavior,
      ) {
  addAll(children);
  _extractPlaceholderSpans(text);
}