flutter-woocommerce-app/LabelStoreMax/lib/config/app_locale.dart
2021-03-28 20:01:49 +01:00

24 lines
585 B
Dart

import 'package:flutter/cupertino.dart';
/*
|--------------------------------------------------------------------------
| APP LOCALE
|
| Configure the language by setting the locale.
|
| e.g. Change app_locale = Locale('es'); for Spanish.
| You can only use one of the supported locales below in app_locales_supported.
|--------------------------------------------------------------------------
*/
const Locale app_locale = Locale('en');
const List<Locale> app_locales_supported = [
Locale('en'),
Locale('es'),
Locale('fr'),
Locale('hi'),
Locale('it'),
Locale('pt'),
];