129 lines
4.2 KiB
Dart
129 lines
4.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:intl/intl_standalone.dart';
|
|
|
|
import '../generated/l10n.dart';
|
|
import '../local_storage/key_value_storage.dart';
|
|
import '../util/extension_helper.dart';
|
|
|
|
class LanguagesSetting extends StatefulWidget {
|
|
const LanguagesSetting({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_LanguagesSettingState createState() => _LanguagesSettingState();
|
|
}
|
|
|
|
class _LanguagesSettingState extends State<LanguagesSetting> {
|
|
_setLocale(Locale locale, {bool systemDefault = false}) async {
|
|
var localeStorage = KeyValueStorage(localeKey);
|
|
if (systemDefault) {
|
|
await localeStorage.saveStringList([]);
|
|
await findSystemLocale();
|
|
var systemLanCode;
|
|
final list = Intl.systemLocale.split('_');
|
|
if (list.length == 2) {
|
|
systemLanCode = list.first;
|
|
} else if (list.length == 3) {
|
|
systemLanCode = '${list[0]}_${list[1]}';
|
|
} else {
|
|
systemLanCode = 'en';
|
|
}
|
|
await S.load(Locale(systemLanCode));
|
|
if (mounted) {
|
|
setState(() {});
|
|
}
|
|
} else {
|
|
await localeStorage
|
|
.saveStringList([locale.languageCode, locale.countryCode]);
|
|
await S.load(locale);
|
|
if (mounted) {
|
|
setState(() {});
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
findSystemLocale();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final s = context.s;
|
|
return Column(
|
|
children: [
|
|
ListTile(
|
|
title: Text(
|
|
s.systemDefault,
|
|
style: TextStyle(
|
|
color: Intl.systemLocale.contains(Intl.getCurrentLocale())
|
|
? context.accentColor
|
|
: null),
|
|
),
|
|
onTap: () =>
|
|
_setLocale(Locale(Intl.systemLocale), systemDefault: true),
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
),
|
|
Divider(height: 1),
|
|
ListTile(
|
|
title: Text('English'),
|
|
onTap: () => _setLocale(Locale('en')),
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
trailing: Radio<Locale>(
|
|
value: Locale('en'),
|
|
groupValue: Locale(Intl.getCurrentLocale()),
|
|
onChanged: _setLocale)),
|
|
Divider(height: 1),
|
|
ListTile(
|
|
title: Text('简体中文'),
|
|
onTap: () => _setLocale(Locale('zh_Hans')),
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
trailing: Radio<Locale>(
|
|
value: Locale('zh_Hans'),
|
|
groupValue: Locale(Intl.getCurrentLocale()),
|
|
onChanged: _setLocale,
|
|
)),
|
|
Divider(height: 1),
|
|
ListTile(
|
|
title: Text('Français'),
|
|
onTap: () => _setLocale(Locale('fr')),
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
trailing: Radio<Locale>(
|
|
value: Locale('fr'),
|
|
groupValue: Locale(Intl.getCurrentLocale()),
|
|
onChanged: _setLocale),
|
|
),
|
|
Divider(height: 1),
|
|
ListTile(
|
|
title: Text('Español'),
|
|
onTap: () => _setLocale(Locale('es')),
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
trailing: Radio<Locale>(
|
|
value: Locale('es'),
|
|
groupValue: Locale(Intl.getCurrentLocale()),
|
|
onChanged: _setLocale),
|
|
),
|
|
Divider(height: 1),
|
|
ListTile(
|
|
onTap: () =>
|
|
'mailto:<tsacdop.app@gmail.com>?subject=Tsacdop localization project'
|
|
.launchUrl,
|
|
contentPadding: const EdgeInsets.only(left: 20, right: 20),
|
|
title: Align(
|
|
alignment: Alignment.centerLeft,
|
|
child: Image(
|
|
image: Theme.of(context).brightness == Brightness.light
|
|
? AssetImage('assets/localizely_logo.png')
|
|
: AssetImage('assets/localizely_logo_light.png'),
|
|
height: 20),
|
|
),
|
|
subtitle: Text(
|
|
"If you'd like to contribute to localization project, please contact me."),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|