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

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

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

14条回答
  •  爱一瞬间的悲伤
    2020-12-13 04:15

    I found this solution for Android and iOS (RN 0.35)

    import React, {NativeModules} from 'react-native';
    
    if (NativeModules.I18nManager) {
        const {localeIdentifier, isRTL} = NativeModules.I18nManager;
    }
    

    May be this will help to someone, but iOS not shows locale property. It shows only rtl support now.

提交回复
热议问题