公司项目,显示数据过多,自动横屏显示。

我利用的是react-native-orientation

安装:

npm install react-native-orientation --save

自动link:

.react-native link react-native-orientation

注:link不成功就要手动修改,我是成功了,没有问题。

引入:

import Orientation from 'react-native-orientation';

卸载横屏

componentWillMount() {
       Orientation.lockToLandscape();
}

加载横屏

componentWillUnmount() {
     Orientation.lockToLandscape();
}

 注:这是竖屏,替换就好。

 Orientation.lockToPortrait();

 

Logo

开源鸿蒙跨平台开发社区汇聚开发者与厂商,共建“一次开发,多端部署”的开源生态,致力于降低跨端开发门槛,推动万物智联创新。

更多推荐