AppFlowy/frontend/appflowy_flutter/lib/util/google_font_family_extension.dart

8 lines
229 B
Dart
Raw Normal View History

extension GoogleFontsParser on String {
String parseFontFamilyName() {
final camelCase = RegExp('(?<=[a-z])[A-Z]');
return replaceAll('_regular', '')
.replaceAllMapped(camelCase, (m) => ' ${m.group(0)}');
}
}