textWrap method
⚠️ 部分支持:Flutter 通过其他属性间接控制文本换行 text-wrap: text-wrap: wrap; ✅ 支持:允许文本自动换行(默认行为)
Implementation
/// text-wrap: text-wrap: wrap;
/// ✅ 支持:允许文本自动换行(默认行为)
TextBuilder textWrap() {
_maxLines = null; // 允许多行
return this;
}
⚠️ 部分支持:Flutter 通过其他属性间接控制文本换行 text-wrap: text-wrap: wrap; ✅ 支持:允许文本自动换行(默认行为)
/// text-wrap: text-wrap: wrap;
/// ✅ 支持:允许文本自动换行(默认行为)
TextBuilder textWrap() {
_maxLines = null; // 允许多行
return this;
}