You can use this module to Localize your app, and access the locale data on the native device.
Using the popular library i18n-js with expo-localization will enable you to create a very accessible experience for users.
Platform Compatibility
Android Device
Android Emulator
iOS Device
iOS Simulator
Web
✅
✅
✅
✅
✅
Installation
For managed apps, you'll need to run expo install expo-localization. To use it in a bare React Native app, follow its installation instructions.
This API is mostly synchronous and driven by constants. On iOS the constants will always be correct, on Android you should check if the locale has updated using AppState and Localization.getLocalizationAsync(). Initally the constants will be correct on both platforms, but on Android a user can change the language and return, more on this later.
Localization.locale: string
Native device language, returned in standard format. Ex: en, en-US, es-US.
Localization.locales: Array<string>
List of all the native languages provided by the user settings. These are returned in the order the user defines in their native settings.
Localization.region: ?string
Available on iOS and Web. Region code for your device which came from Region setting in Language & Region. Ex: US, NZ.
Localization.isoCurrencyCodes: ?Array<string>
A list of all the supported ISO codes.
Localization.timezone: string
The current time zone in display format. ex: America/Los_Angeles
On Web timezone is calculated with Intl.DateTimeFormat().resolvedOptions().timeZone. For a better guess you could use the moment-timezone library but is a very large library and will add significant bloat to your bundle.
Localization.isRTL: boolean
This will return true if the current language is Right-to-Left.