Flutter - 텍스트 위젯의 화면에 비춰지는 크기(가로, 세로) 구하기
텍스트 "abcde"
가 화면에서 몇 픽셀을 차지하고 있을까
텍스트의 가로 길이가 필요한 경우가 있었는데 다행히 방법을 찾을 수 있었다
스택오버플로우 참조: How can I get the size of the Text Widget in flutter
Size textSize = (TextPainter(
text: TextSpan(text: text, style: textStyle),
maxLines: 1,
textScaleFactor: MediaQuery.of(context).textScaleFactor,
textDirection: TextDirection.ltr)
..layout())
.size;
textSize.width
, textSize.height
등 참조하면 끝
굿
댓글남기기