flutter_platform_widgets icon indicating copy to clipboard operation
flutter_platform_widgets copied to clipboard

Translate "Cancel" and "Done button using Locale

Open arioul89 opened this issue 1 year ago • 1 comments

Hi,

Despite of having date using French locale, "Cancel" and "Done" button are still in English :

image

Is there any possibility to translate these button manually ?

Regards

arioul89 avatar Mar 02 '24 14:03 arioul89

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: '...',
    ),

aqwert avatar Mar 07 '24 09:03 aqwert