May 2018
Intermediate to advanced
470 pages
13h 54m
English
In index.js, we will update the default styles created using StyleSheet.create with our own CSS rules, to be used with the components in the game.
/MERNVR/index.js:
const styles = StyleSheet.create({ completeMessage: { margin: 0.1, height: 1.5, backgroundColor: 'green', transform: [ {translate: [0, 0, -5] } ] }, congratsText: { fontSize: 0.5, textAlign: 'center', marginTop: 0.2 }, collectedText: { fontSize: 0.2, textAlign: 'center' }, button: { margin: 0.1, height: 0.5, backgroundColor: 'blue', transform: [ { translate: [0, 0, -5] } ] }, buttonText: { fontSize: 0.3, textAlign: 'center' } })
Read now
Unlock full access