What's the best way to get device locale in react native (iOS)?

后端 未结 14 1662
清歌不尽
清歌不尽 2020-12-13 03:35

Something similar to [NSLocale currentLocale] in Objective-C.

14条回答
  •  别那么骄傲
    2020-12-13 04:20

    I am using react-native-i18n

    in order to access the device's language I used:

    import { getLanguages } from 'react-native-i18n';
    
    getLanguages().then(languages => {
      console.log(languages); // ['en-US', 'en']
    });
    

    It's all in the documentation.

提交回复
热议问题