whitespacePreLine method

TextBuilder whitespacePreLine()

whitespace-pre-line: white-space: pre-line; ❌ 不支持:Flutter 不支持保留换行符

Implementation

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