whitespacePreWrap method

TextBuilder whitespacePreWrap()

whitespace-pre-wrap: white-space: pre-wrap; ❌ 不支持:Flutter 不支持保留空格和换行符

Implementation

TextBuilder whitespacePreWrap() {
  // Flutter 不支持 pre-wrap,使用正常换行作为替代
  _maxLines = null;
  return this;
}