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

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

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

14条回答
  •  一向
    一向 (楼主)
    2020-12-13 04:24

    function getLocale() {
      if (React.Platform.OS === 'android') {
        return I18n.locale;
      } else {
        return NativeModules.SettingsManager.settings.AppleLocale.replace(/_/, '-');
      }
    }
    

提交回复
热议问题