getTxtSize function

Size getTxtSize(
  1. String text,
  2. TextStyle textStyle
)

Implementation

Size getTxtSize(String text, TextStyle textStyle) {
  final Size txtSize = (TextPainter(
          text: TextSpan(text: text, style: textStyle),
          maxLines: 1,
          textScaleFactor: Get.textScaleFactor,
          textDirection: TextDirection.ltr)
        ..layout())
      .size;
  return txtSize;
}