如何从 Flutter TextBox 获取原始文本

Sur*_*gch 4 text typography flutter

在 Flutter 中,在 Paragraph 或 TextPainter 布置其文本后,您可以通过调用 来获取行(或行内运行)的 Rect getBoxesForSelection。如果你画出实际的盒子,它们看起来像这样:

在此输入图像描述

如何以编程方式获取每个文本框中的文本?

Sur*_*gch 8

我希望有更好的方法,但这是迄今为止我找到的唯一方法:

// The TextPaint has already been laid out

// select everything
TextSelection selection = TextSelection(baseOffset: 0, extentOffset: textSpan.text.length);

// get a list of TextBoxes (Rects)
List<TextBox> boxes = _textPainter.getBoxesForSelection(selection);

// Loop through each text box
List<String> lineTexts = [];
int start = 0;
int end;
int index = -1;
for (TextBox box in boxes) {
  index += 1;

  // Uncomment this if you want to only get the whole line of text
  // (sometimes a single line may have multiple TextBoxes)
  // if (box.left != 0.0)
  //  continue;

  if (index == 0)
    continue;
  // Go one logical pixel within the box and get the position
  // of the character in the string.
  end = _textPainter.getPositionForOffset(Offset(box.left + 1, box.top + 1)).offset;
  // add the substring to the list of lines
  final line = rawText.substring(start, end);
  lineTexts.add(line);
  start = end;
}
// get the last substring
final extra = rawText.substring(start);
lineTexts.add(extra);
Run Code Online (Sandbox Code Playgroud)

笔记:

  • 为了更可靠,这应该检查TextPositionaffinity
  • 这还不能处理从右到左的文本。

更新:

  • 如果您要获取整行的文本,您TextPainter.computeLineMetrics()现在可以使用 LineMetrics (来自 )而不是 TextBox。这个过程是类似的。