Skip to content

Instantly share code, notes, and snippets.

@sayurimizuguchi
Last active July 20, 2021 20:36
Show Gist options
  • Save sayurimizuguchi/d2975e9f85f14286ab5cba05ed251b63 to your computer and use it in GitHub Desktop.
Save sayurimizuguchi/d2975e9f85f14286ab5cba05ed251b63 to your computer and use it in GitHub Desktop.
Get current language locale setting in the phone iOS and Android - React Native
import { NativeModules, Platform } from 'react-native';
/**
* use NativeModules to get devide languages
* both iOS and Android, default format is language_Country e.g en_US
* @return {string} language
*/
const deviceLanguage = Platform.OS === 'ios'
? NativeModules.SettingsManager.settings.AppleLocale
: NativeModules.I18nManager.localeIdentifier;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment