mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
23 lines
547 B
Dart
23 lines
547 B
Dart
|
import 'package:easy_localization/easy_localization.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class Localization extends StatelessWidget {
|
||
|
const Localization({
|
||
|
Key key,
|
||
|
this.child,
|
||
|
}) : super(key: key);
|
||
|
|
||
|
final Widget child;
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return EasyLocalization(
|
||
|
preloaderColor: Colors.black,
|
||
|
supportedLocales: [Locale('ru'), Locale('en')],
|
||
|
path: 'assets/translations',
|
||
|
fallbackLocale: Locale('en'),
|
||
|
useOnlyLangCode: true,
|
||
|
child: child,
|
||
|
);
|
||
|
}
|
||
|
}
|