Force ios to change the language for the native module
npm install react-native-change-ios-locale
import { switchLang } from "react-native-change-ios-locale";
// ...
useEffect(() => {
async function changeLocalization() {
await translations.setLanguage(selectedLocale);
}
if (selectedLocale) {
changeLocalization().then(() => {
if (Platform.OS === 'ios') {
switchLang(selectedLocale);
}
});
}
}, [selectedLocale]);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT