I have just started exploring react 360 by installing the initial project. The initial project always displays text on initial load in front of the user. I am trying to move the text to the right using absolute position but after it goes outside of the initial surface it can not be seen anymore. I have read the documentation but it's not clear. What do I need to do? Do I need to increase the width of the surface so it wraps around the entire view (all around the user) in order for that text to be seen? How do I do this? Or is there actually any other preferred common technique. I am looking for the solution for last 2h unable to find any solution.
import React from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
asset,
VrButton,
Environment,
} from "react-360";
export default class Hello360 extends React.Component {
state = {
name: 'Click me'
}
handleClick = () => {
this.setState({
name: 'You have clicked me'
})
}
componentDidMount() {
Environment.clearBackground();
Environment.setBackgroundImage(asset("360_house.jpg"), { format: "2D" });
}
render() {
return <View style={styles.panel}>
<View style={styles.greetingBox}>
<Text style={styles.greeting}>{this.state.name}</Text>
<VrButton onClick={this.handleClick} style={styles.button}>
<Text style={styles.buttonText}>Click</Text>
</VrButton>
</View>
</View>;
}
};
const styles = StyleSheet.create({
panel: {
// Fill the entire surface
width: 1000,
height: 600,
backgroundColor: 'rgba(255, 255, 255, 0.5)',
justifyContent: 'center',
alignItems: 'center',
position: 'absolute',
},
greetingBox: {
padding: 20,
backgroundColor: '#000000',
borderColor: '#639dda',
borderWidth: 2,
},
greeting: {
fontSize: 30,
},
button: {
padding: 20,
backgroundColor: '#000000',
borderColor: '#639dda',
borderWidth: 2,
},
buttonText: {
fontSize: 10,
}
});
AppRegistry.registerComponent('Hello360', () => Hello360);