Line data Source code
1 : // ignore_for_file: non_constant_identifier_names
2 :
3 : import 'package:amadeus_proto/constants.dart';
4 : import 'package:amadeus_proto/pages/language/language_button.dart';
5 : import 'package:flag/flag_enum.dart';
6 : import 'package:flag/flag_widget.dart';
7 :
8 0 : final List<LanguageButton> LANGUAGES = [
9 0 : LanguageButton(
10 : language: "Français",
11 0 : flag: Flag.fromCode(
12 : FlagsCode.FR,
13 : height: 30,
14 : width: 50,
15 : borderRadius: smallBorderRadius,
16 : ),
17 : languageCode: "fr",
18 : countryCode: "FR"),
19 0 : LanguageButton(
20 : language: "English (United State)",
21 0 : flag: Flag.fromCode(
22 : FlagsCode.US,
23 : height: 30,
24 : width: 50,
25 : borderRadius: smallBorderRadius,
26 : ),
27 : languageCode: "en",
28 : countryCode: "US"),
29 : ];
|