Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created May 1, 2020 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AllGistsEqual/2ac43799c71a78439f52cba4dbcea432 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/2ac43799c71a78439f52cba4dbcea432 to your computer and use it in GitHub Desktop.
import React from 'react'
import { View, StyleSheet } from 'react-native'
import PropTypes from 'prop-types'
import BackgroundPage from '../../components/global/layout/BackgroundPage'
import RockPaperScissorsLizardSpock from '../../components/other/RockPaperScissorsLizardSpock'
import IconButton from '../../components/global/ui/IconButton'
import backgroundImage from '../../../assets/bg_abstract_02.jpg'
const SceneGameHome = ({ navigation }) => (
<BackgroundPage background={backgroundImage}>
<View style={styles.contentBox}>
<RockPaperScissorsLizardSpock />
<IconButton
icon="❌"
size={30}
customStyles={styles.buttonExit}
onPress={() => navigation.navigate('Home')}
/>
</View>
</BackgroundPage>
)
const styles = StyleSheet.create({
contentBox: {
width: '100%',
flex: 1,
flexGrow: 1,
alignItems: 'center',
justifyContent: 'center',
},
buttonExit: {
position: 'absolute',
top: 15,
right: 15,
},
})
SceneGameHome.propTypes = {
navigation: PropTypes.object.isRequired,
}
export default SceneGameHome
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment