i created an app in react-native ,when the phone language is En every thing goes fine but when i change the phone language the UI crashes and everything is backward i am using
"react": "16.6.3",
"react-native": "0.58.5",
You should disable rtl view in your app
Put this code in app.js:-
const ReactNative = require('react-native');
try {
ReactNative.I18nManager.allowRTL(false);
} catch (e) {
console.log(e);
}
and you should be fine.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With