諸行無常

IT色々お勉強中のブログ

React Native I18n.localeがenしか取得できない

I18n.localeがenしか取得できないケースがあるらしい

Both in android and ios locale always returns 'en' · Issue #7 · xcarpentier/ex-react-native-i18n · GitHub

I18n.initAsync()をして上げると解決する

import I18n from 'ex-react-native-i18n'


  componentWillMount() {
    this._loadAssetsAsync()
  }

  _loadAssetsAsync = async () => {
    try {
      await I18n.initAsync()
    } catch (e) {
      console.log(e.message)
    } finally {
      this.setState({ isAssetsLoaded: true })
    }
  }