728x90
Size getTextSize(String text, TextStyle style) {
final TextPainter textPainter = TextPainter(
text: TextSpan(text: text, style: style),
maxLines: 1,
textDirection: TextDirection.ltr)
..layout(minWidth: 0, maxWidth: double.infinity);
return textPainter.size;
}
[reference]
https://stackoverflow.com/questions/52659759/how-can-i-get-the-size-of-the-text-widget-in-flutter
728x90
'Dart & Flutter' 카테고리의 다른 글
[Flutter/Android] Google Play 출시 준비 (0) | 2023.05.10 |
---|---|
[Flutter] _minScrollExtent Null check Error (0) | 2023.05.09 |
[Flutter] Repository Pattern (0) | 2023.05.04 |
[Flutter] fluttererror.fromparts (0) | 2023.05.02 |
[Flutter/Android] android.app.RemoteServiceException: Bad notification posted from package Couldn't update icon: StatusBarIcon (0) | 2023.04.26 |