getTxtSize function
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;
}