Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created May 1, 2020 19:09
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/444878da0dd989d7b9c403ad5d9eea11 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/444878da0dd989d7b9c403ad5d9eea11 to your computer and use it in GitHub Desktop.
import React from 'react'
import { Image, StyleSheet } from 'react-native'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { userLogout } from '../../redux/actions/user.actions'
import TextButton from '../../components/global/ui/TextButton'
import BackgroundPage from '../../components/global/layout/BackgroundPage'
import backgroundImage from '../../../assets/bg_abstract_02.jpg'
import logo from '../../../assets/game_logo.png'
const SceneHome = ({ logout, navigation }) => (
<BackgroundPage background={backgroundImage}>
<Image
source={logo}
style={styles.logo}
/>
<TextButton
title="Settings"
onPress={() => navigation.navigate('Settings')}
/>
<TextButton
title="Logout"
onPress={logout}
/>
<TextButton
title="Play the game"
onPress={() => navigation.navigate('GameHome')}
/>
</BackgroundPage>
)
const styles = StyleSheet.create({
logo: {
width: 215,
height: 230,
marginBottom: 100,
},
})
SceneHome.propTypes = {
navigation: PropTypes.object.isRequired,
logout: PropTypes.func.isRequired,
}
const mapDispatchToProps = (dispatch) => ({
logout: (name) => dispatch(userLogout({ name })),
})
export default connect(
null,
mapDispatchToProps,
)(SceneHome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment