react-native-vr

0.0.1 • Public • Published

React Native Virtual Reality

Setup

Install the module using npm i -S react-native-vr and link it using react-native link react-native-vr. Also make sure you have the following lines in your android/build.gradle:

allprojects {
    repositories {
        ...
        // IMPORTANT: Make sure you have the following line
        flatDir { dirs "$rootDir/../node_modules/react-native-vr/android/libs" }
    }
}

Usage

The following example is everything you can do for now.

import Vr from 'react-native-vr'
 
...
 
  render() {
    return <Vr
      src={{
        uri: 'https://my-awesome-3d-video.com',
        type: Vr.constants.TYPE.MONO,
        format: Vr.constants.FORMAT.DEFAULT
      }}
      displayMode={Vr.constants.DISPLAY_MODE.EMBEDDED}
      paused={false}
      style={{ height: 100, width: 100 }} />
  }

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i react-native-vr

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • bsiddiqui
    • alanhoff