LTR in RTL Devices in react native

LTR in RTL Devices in react native

新问题

我的应用程序是 Left to Right 但是当使用阿拉伯语 Phone 的人打开我的应用程序时,所有样式都会 Right to Left

如何让我的应用程序在所有语言中都从左到右固定静态?

我在 AndroidManifest.xml 中添加了这个:android:supportsRtl="false" 并解决了

您只需将以下内容添加到您的 app.js 或您的 firstscreen.js(如果您参加世博会

import { I18nManager} from 'react-native';
I18nManager.allowRTL(false);

export default class <className> extends Component {



}