I would like the ability for the user to click a button using the React-VR cursor and be able to go to external and internal pages like this
onEnter={() => Linking.openURL("https://www.google.com").catch(err => console.error('An error occurred', err))}
or
onEnter={() => Linking.openURL("paris.vr.js").catch(err => console.error('An error occurred', err))}
But I'm getting the following error "Cannot read property 'openURL' of undefined"
Can someone help me out? Thanks!