知识 分享 互助 懒人建站

    懒人建站专注于网页素材下载,提供网站模板、网页设计、ps素材、图片素材等,服务于【个人站长】【网页设计师】和【web开发从业者】的代码素材与设计素材网站。

    懒人建站提供网页素材下载、网站模板
    知识 分享 互助!

    react native横屏竖屏控制组件(react-native-orientation)

    作者:佳明妈 来源:web前端开发 2016-10-21 人气:
    react-native-orientation是一个横屏竖屏控制的react native组件,下面对react native横屏竖屏控制组件的用法做一个简单介绍。 react-native-orientation的git地址: https://github.com/yamill/react-native-orientation

    react-native-orientation是一个横屏竖屏控制的react native组件,下面对react native横竖屏控制组件的用法做一个简单介绍。
    react-native-orientation的git地址:https://github.com/yamill/react-native-orientation

    react-native-orientation组件安装

    1.如果项目正在运行,先关闭模拟器和终端;

    2.执行安装命令:npm install --save react-native-orientation;

    3.执行命令:rnpm link

    4.现在使用的版本为1.15.0,link执行过之后,我们要需要手动配置

    iOS:

    1.用Xcode打开项目,右键点击项目名称,选择 “Add Files to ‘项目名’ “ ;

    2.找到路径文件:  项目文件夹/node_modules/react-native-orientation/RCTOrientation  ,将该文件添加上;

    3.然后重新运行项目;

    Android:

    react native横竖屏控制组件(react-native-orientation)

    react-native-orientation用法

    componentWillMount() {
        // 判断横竖屏幕
        var initial = Orientation.getInitialOrientation();
        if (initial === 'PORTRAIT') {
          //do stuff
        } else {
          //do other stuff
        }
        
        // 只允许竖屏
        Orientation.lockToPortrait();
        //只允许横屏
        Orientation.lockToLandscape();
    }

    react-native-orientation更多方法

    • lockToPortrait()
    • lockToLandscape()
    • lockToLandscapeLeft()
    • lockToLandscapeRight()
    • unlockAllOrientations()
    • getOrientation(function(err, orientation)

    返回的结果有 LANDSCAPE PORTRAIT UNKNOWN PORTRAITUPSIDEDOWN

    getSpecificOrientation(function(err, specificOrientation)

     返回的结果有 LANDSCAPE-LEFT LANDSCAPE-RIGHT PORTRAIT UNKNOWN PORTRAITUPSIDEDOWN

    参考官方文档:https://github.com/yamill/react-native-orientation

    ↓ 查看全文

    react native横屏竖屏控制组件(react-native-orientation)由懒人建站收集整理,您可以自由传播,请主动带上本文链接

    懒人建站就是免费分享,觉得有用就多来支持一下,没有能帮到您,懒人也只能表示遗憾,希望有一天能帮到您。

    react native横屏竖屏控制组件(react-native-orientation)-最新评论