as I wrote in the title I'd like to display this flutter package [https://pub.dev/packages/date_picker_timeline] in Italian language. How can I do? I'm into flutter since mid 2021 so I'm not an expert.
Thank you
So what i would try is to use the this.locale in the Constructor and change it to your local value. On the Example in the documentation they used en_US. Documentation locale
Maybe a look into locale from flutter will help you. Internationalizing Flutter apps
Found it! Inside the package there is a file with a locale property. Just change "en_US" to your language like "it_IT" in my case.
Thanks to all! bye!!