RTL is forced in RTL devices

前端 未结 4 1961
粉色の甜心
粉色の甜心 2021-01-31 17:38

The new version of React Native has issued support for RTL devices: https://facebook.github.io/react-native/blog/2016/08/19/right-to-left-support-for-react-native-apps.html

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-31 18:09

    if you are using Expo

    import { I18nManager} from 'react-native';
    I18nManager.allowRTL(false);
    
    export default class  extends Component {
    
    
    
    }
    

提交回复
热议问题