Change language in app #1732
-
I want to apply change language feature in app (Not using default Localization). I just save the lang code in storage, So in the i18n.ts, how can I change language when lang code change? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Good question! Ignite comes with expo-localization, which is a great starter library, but is somewhat limited and only supports the user's default device locale, so changing the language means changing device settings. If you're looking for a more robust localization solution that allows passing a locale value via code, React i18n-next is a great option! |
Beta Was this translation helpful? Give feedback.
Good question! Ignite comes with expo-localization, which is a great starter library, but is somewhat limited and only supports the user's default device locale, so changing the language means changing device settings. If you're looking for a more robust localization solution that allows passing a locale value via code, React i18n-next is a great option!