textWidth property

double textWidth

The textWidth method returns the maximum intrinsic width of the text within the GText object. This is calculated by Flutter based on the font, font size, and content of the text.

Implementation

double get textWidth {
  return _paragraph?.maxIntrinsicWidth ?? 0;
}