Sai*_*aha 6 javascript mobile android ios react-native
我正在研究一个要求,其中移动设备仅支持纵向模式,而平板电脑/iPad同时支持纵向和横向模式,我不确定如何使用react-native来实现该要求
对于 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)
| 归档时间: |
|
| 查看次数: |
947 次 |
| 最近记录: |