Fei*_*Lei 6 javascript react-native
我希望我的应用支持多种语言,例如英语和中文。使用 react native,如何在手机上找到语言设置?
Fir*_*med 28
import { NativeModules, Platform } from 'react-native';
const deviceLanguage =
Platform.OS === 'ios'
? NativeModules.SettingsManager.settings.AppleLocale ||
NativeModules.SettingsManager.settings.AppleLanguages[0] // iOS 13
: NativeModules.I18nManager.localeIdentifier;
console.log(deviceLanguage); //en_US
Run Code Online (Sandbox Code Playgroud)
尝试使用这个库 - > https://github.com/AlexanderZaytsev/react-native-i18n
import I18n from 'react-native-i18n';
deviceLocale = I18n.currentLocale()
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
13184 次 |
最近记录: |