24 lines
585 B
Dart
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'),
|
|
];
|