LTR in RTL Devices in react native
I Added This: android:supportsRtl="false"
in the AndroidManifest.xml
and Solved
You can simply add the following to your app.js or to your firstscreen.js if you are on Expo
import { I18nManager} from 'react-native';
I18nManager.allowRTL(false);
export default class <className> extends Component {
}