Answers for "ios react native detect locale"

0

ios react native detect locale

import { NativeModules, Platform } from 'react-native'

const locale = Platform.select({
  ios: NativeModules.SettingsManager?.settings?.AppleLocale || NativeModules.SettingsManager?.settings?.AppleLanguages[0],
  android: NativeModules.I18nManager.localeIdentifier,
})
Posted by: Guest on March-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language