使用react-native为iPad/平板电脑启用横向模式

Sai*_*aha 6 javascript mobile android ios react-native

我正在研究一个要求,其中移动设备仅支持纵向模式,而平板电脑/iPad同时支持纵向和横向模式,我不确定如何使用react-native来实现该要求

Han*_*ter 6

对于 iOS,在文件中包含以下几行ios/Info.plist即可:

<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
</array>

<key>UISupportedInterfaceOrientations~ipad</key>
<array>
    <string>UIInterfaceOrientationLandscapeRight</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
Run Code Online (Sandbox Code Playgroud)