delfme
delfme
@darshankawar we try to check master every a few weeks to help report regressions when we see them
Im not sure, but I think, `textPainter` is not precise when returning text width when text contains emojis. Prolly due to the emoji size issue. Would it be possible to...
Hello, my apologies for the belated reply, the notification got lost in my inbox. @LongCatIsLooong The text style configuration is the same. Will try to create a new example but...
@LongCatIsLooong I dont get this, what the sample code should be?
Also, is there a sample code used by flutter team to test that textPainter's data is precise? Coz I get unconsistent results when emojis are in the text and also...
Sample code uses system font, just set `fontSize` and regular `fontWeight`. ``` TextStyle style = TextStyle( fontSize: 17, fontWeight: FontWeight.w400, textBaseline: TextBaseline.alphabetic, ); ``` It is more likely that this...
Here is an example. We have two bubbles (see 1 and 2), and an "widgets overlapping" issue inside bubble 1. The width of last line returned by TextPainter is wrong...
Idk if `right` can be easily added to `LineMetrics`. If so, a quick check to gain more info about the issue would be getting `right` and print below log. If...
@LongCatIsLooong can rawText be exposed inside `LineMetrics`? This way we could quickly access `textPainter.computeLineMetrics().last.rawText` and correct last line's width.
I'd need to get the text of last line, see pic below. I see that ``` final range = textPainter.getLineBoundary(const TextPosition(offset:0)); ``` gives me the index of first string. If...