mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* fix: add permission check before selecting image in image block * feat: use system default font on desktop * fix: set appbar icon size to 30 * feat: add default font family on desktop
		
			
				
	
	
		
			16 lines
		
	
	
		
			722 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			722 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:appflowy/generated/locale_keys.g.dart';
 | 
						|
import 'package:appflowy/shared/patterns/common_patterns.dart';
 | 
						|
import 'package:appflowy/workspace/application/settings/appearance/base_appearance.dart';
 | 
						|
import 'package:easy_localization/easy_localization.dart';
 | 
						|
 | 
						|
extension FontFamilyExtension on String {
 | 
						|
  String parseFontFamilyName() => replaceAll('_regular', '')
 | 
						|
      .replaceAllMapped(camelCaseRegex, (m) => ' ${m.group(0)}');
 | 
						|
 | 
						|
  // display the default font name if the font family name is empty
 | 
						|
  //  or using the default font family
 | 
						|
  String get fontFamilyDisplayName => isEmpty || this == defaultFontFamily
 | 
						|
      ? LocaleKeys.settings_appearance_fontFamily_defaultFont.tr()
 | 
						|
      : parseFontFamilyName();
 | 
						|
}
 |