14 lines
436 B
Dart
14 lines
436 B
Dart
import 'package:flutter_localized_locales/flutter_localized_locales.dart';
|
|
import 'package:hiddify/gen/fonts.gen.dart';
|
|
import 'package:hiddify/gen/translations.g.dart';
|
|
|
|
extension AppLocaleX on AppLocale {
|
|
String get preferredFontFamily =>
|
|
this == AppLocale.fa ? FontFamily.shabnam : "";
|
|
|
|
String get localeName =>
|
|
LocaleNamesLocalizationsDelegate
|
|
.nativeLocaleNames[flutterLocale.toString()] ??
|
|
name;
|
|
}
|