getFontWidth method
Implementation
double getFontWidth(String text, TextStyle style, BuildContext context) {
TextPainter textPainter = TextPainter(
text: TextSpan(text: text, style: style),
maxLines: 1,
textScaleFactor: MediaQuery.of(context).textScaleFactor,
textDirection: TextDirection.ltr)
..layout();
return textPainter.size.width;
}