stryder-dev / flutter_platform_widgets

Target the specific design of Material for Android and Cupertino for iOS widgets through a common set of Platform aware widgets
MIT License
1.58k stars 171 forks source link

Translate "Cancel" and "Done button using Locale #454

Open arioul89 opened 7 months ago

arioul89 commented 7 months ago

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

aqwert commented 7 months ago

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