Files
GymLink_Flutter/lib/tools/text.dart
2024-06-07 14:57:28 +03:00

10 lines
258 B
Dart

String shortString(String text, {int length = 10}) {
if (text.length > length) {
String shortText = text.substring(0, length);
return shortText +
(text.substring(0, length + 1).endsWith(' ') ? '' : '...');
} else {
return text;
}
}