Open
Description
Requirements:
Please go through this checklist before opening a new issue
- Review the documentation
- Search for existing issues in: viromedia/viro & ViroCommunity/viro
- Use the latest ViroReact release
Environment
Please provide the following information about your environment:
- Development OS: Mac
- Device OS & Version: Android 10
- Version: "@viro-community/react-viro": "^2.21.1", "react-native": "0.66.2",
- Device(s): Pixel XL
Description
I'm only seeing the image on one side of the screen. There is a small blue sparkle which I couldn't make out for the right eye. Zooming in with a screenshot didn't help either.
Reproducible Demo
export default function Screen() {
return (
<ViroVRSceneNavigator
initialScene={{
scene: MyStartScene,
}}
/>
);
}
export const MyStartScene = () => {
return (
<ViroScene>
<Viro360Image source={require('../../../../assets/images/grid.jpeg')} />
</ViroScene>
);
};