Search code examples
flutterdatedartflutter-web

How to change Date Picker default date format in Flutter


I want to change the default date picker date format. The default format of date picker is "MM/DD/YYYY". But i want "DD/MM/YYYY".


Solution

  • you can do this by updating your apps (or just the widgets) locale:

    await showDatePicker(locale: const Locale('de')); 
    

    'de' for germany, but pick whatever countryCode you require.