Search code examples
datetimedarttimezoneflutter

How to get timezone, Language and County Id in flutter by the location of device in flutter?


I want to get Timezone, language, and county Id when I run my project on my device android or iOS. It should detect Timezone, language and country Id from the location of the device.

Can I get these via the internal library?


Solution

  • https://flutter.io/tutorials/internationalization/#tracking-locale

    Locale myLocale = Localizations.localeOf(context);

    provides countryCode and languageCode

    https://docs.flutter.io/flutter/dart-ui/Locale-class.html

    The timezone should be available with (not tried)

    DateTime.now().timeZoneName
    

    https://docs.flutter.io/flutter/dart-core/DateTime-class.html