Как я могу заставить сборщика даты и времени купертино работать в локали иврита во флаттере? потому что теперь он работает только в режиме «en». это мой код:
context: context,
builder: (BuildContext builder) {
return Container(
height: MediaQuery.of(context).copyWith().size.height / 3,
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.date,
initialDateTime: DateTime.now(),
onDateTimeChanged: (dateTime) {print(dateTime);}),
);
});
это main.dart:
MyApp() {
local = Locale('he');
}.....
localizationsDelegates: [
// ... app-specific localization delegate[s] here
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
supportedLocales: [
const Locale('en'), // English
const Locale('he'), // Hebrew
// ... other locales the app supports
],
locale: local,