flutter_platform_widgets
flutter_platform_widgets copied to clipboard
Translate "Cancel" and "Done button using Locale
Hi,
Despite of having date using French locale, "Cancel" and "Done" button are still in English :
Is there any possibility to translate these button manually ?
Regards
The labels will not translate automatically. You will need to set these yourself using CupertinoDatePickerData
await showPlatformDatePicker(
context: context,
...
cupertino: (context, platform) => CupertinoDatePickerData(
cancelLabel: '...',
doneLabel: '...',
),