📅  最后修改于: 2022-03-11 15:02:39.344000             🧑  作者: Mango
import { NativeModules, Platform } from 'react-native'
const locale = Platform.select({
ios: NativeModules.SettingsManager?.settings?.AppleLocale || NativeModules.SettingsManager?.settings?.AppleLanguages[0],
android: NativeModules.I18nManager.localeIdentifier,
})