mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 01:35:57 +08:00
12 lines
270 B
Dart
12 lines
270 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
Size textSize(String text, [TextStyle? style]) {
|
|
final textPainter = TextPainter(
|
|
text: TextSpan(text: text, style: style),
|
|
maxLines: 1,
|
|
textDirection: TextDirection.ltr,
|
|
)..layout();
|
|
|
|
return textPainter.size;
|
|
}
|