Flutter plugin for scanning and generating QR codes using the ZXing library, supporting Android, iOS, and desktop platforms
flutterbarcode-generatorbarcode-scannergeneratorqrqrcodeqrcode-generatorqrcode-scannerscannerzxingbarcodezxscanner
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
3 years ago
|
import 'package:flutter/material.dart';
|
||
3 years ago
|
import 'package:zxscanner/configs/app_store.dart';
|
||
|
import 'package:zxscanner/generated/l10n.dart';
|
||
|
import 'package:zxscanner/utils/extensions.dart';
|
||
3 years ago
|
|
||
|
class LanguageWidget extends StatelessWidget {
|
||
|
const LanguageWidget({Key? key, required this.onChanged}) : super(key: key);
|
||
|
|
||
|
final Function(Locale) onChanged;
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return DropdownButton<Locale>(
|
||
|
value: appStore.selectedLanguage.parseLocale(),
|
||
|
isExpanded: false,
|
||
|
isDense: false,
|
||
|
underline: const SizedBox(),
|
||
|
onChanged: (value) async {
|
||
|
if (value != null) {
|
||
|
await S.load(value);
|
||
|
appStore.setLanguage(value.toString());
|
||
|
onChanged(value);
|
||
|
}
|
||
|
},
|
||
|
selectedItemBuilder: (context) {
|
||
|
return S.delegate.supportedLocales
|
||
|
.map((e) => DropdownMenuItem<Locale>(
|
||
|
value: e,
|
||
|
child: SizedBox(
|
||
|
width: 80,
|
||
|
child: Text(
|
||
|
e.countryCode?.toLangIcon() ?? '',
|
||
|
style: Theme.of(context).textTheme.headline5,
|
||
|
textAlign: TextAlign.right,
|
||
|
),
|
||
|
),
|
||
|
))
|
||
|
.toList();
|
||
|
},
|
||
|
items: S.delegate.supportedLocales
|
||
|
.map((e) => DropdownMenuItem(
|
||
|
value: e,
|
||
|
child: Text(e.countryCode?.toLangName() ?? ''),
|
||
|
))
|
||
|
.toList(),
|
||
|
);
|
||
|
}
|
||
|
}
|