wonders/lib/ui/common/controls/locale_switcher.dart

18 lines
564 B
Dart
Raw Normal View History

import 'package:wonders/common_libs.dart';
class LocaleSwitcher extends StatelessWidget with GetItMixin {
LocaleSwitcher({super.key});
@override
Widget build(BuildContext context) {
2022-09-07 13:26:30 -06:00
final locale = watchX((SettingsLogic s) => s.currentLocale);
Future<void> handleSwapLocale() async {
final newLocale = Locale(locale == 'en' ? 'zh' : 'en');
await settingsLogic.changeLocale(newLocale);
2022-09-07 13:26:30 -06:00
}
return AppBtn.from(
text: $strings.localeSwapButton, onPressed: handleSwapLocale, padding: EdgeInsets.all($styles.insets.sm));
}
}