selfprivacy.org.app/lib/config/localization.dart

32 lines
778 B
Dart
Raw Normal View History

2020-12-01 12:26:29 +00:00
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
class Localization extends StatelessWidget {
const Localization({
super.key,
2020-12-01 12:26:29 +00:00
this.child,
2022-06-05 19:36:32 +00:00
});
2020-12-01 12:26:29 +00:00
2021-03-15 15:39:44 +00:00
final Widget? child;
2020-12-01 12:26:29 +00:00
@override
2022-06-05 19:36:32 +00:00
Widget build(final BuildContext context) => EasyLocalization(
supportedLocales: const [
Locale('ru'),
Locale('en'),
Locale('uk'),
Locale('de'),
Locale('fr'),
Locale('es'),
Locale('cs'),
Locale('pl'),
Locale('th'),
],
path: 'assets/translations',
fallbackLocale: const Locale('en'),
useFallbackTranslations: true,
saveLocale: false,
useOnlyLangCode: true,
child: child!,
);
2020-12-01 12:26:29 +00:00
}